forked from chrisyip/egg-view-pug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 868 Bytes
/
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
{
"name": "egg-view-pug",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/chrisyip/egg-view-pug.git",
"author": "Chris Yip <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.7",
"pug": "^2.0.0-beta11"
},
"devDependencies": {
"ava": "^0.18.2",
"cheerio": "^0.22.0",
"egg": "^1.0.0-rc.1",
"egg-mock": "^3.0.1",
"egg-view": "^1.0.0",
"mz": "^2.6.0",
"nyc": "^10.1.2",
"standard": "^8.6.0",
"supertest": "^3.0.0"
},
"scripts": {
"lint": "standard",
"test": "nyc ava",
"coverage": "nyc report --reporter=lcov --reporter=html",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"eggPlugin": {
"name": "pug",
"dependencies": [
"view"
]
},
"files": [
"config",
"lib",
"app.js"
]
}