-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "nuxt-egg",
"version": "0.1.6",
"description": "egg framework for nuxt",
"keywords": [
"egg", "egg-framework", "nuxt", "nuxt-egg"
],
"files": [
"lib/",
"app/",
"config/",
"index.js",
"app.js",
"agent.js",
"nuxt.config.js",
"LICENSE",
"pacakge.json",
"README.md"
],
"dependencies": {
"egg": "^0.12.0",
"nuxt": "latest"
},
"devDependencies": {
"egg-bin": "^2.0.2",
"egg-mock": "^2.3.1",
"eslint-config-egg": "^3.2.0",
"rimraf": "^2.5.4",
"supertest": "^3.0.0",
"eslint": "^3.15.0",
"babel-eslint": "^7.1.1",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
},
"license": "MIT"
}