-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
68 lines (68 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "egg-view-assets",
"version": "1.9.0",
"eggPlugin": {
"name": "assets",
"dependencies": [
"view"
]
},
"description": "Manage frontend assets in development and production",
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"assets"
],
"dependencies": {
"await-event": "^2.1.0",
"cross-spawn": "^6.0.5",
"detect-port": "^1.3.0",
"is-type-of": "^1.2.1",
"mz": "^2.7.0",
"mz-modules": "^2.1.0",
"sdk-base": "^3.5.1"
},
"devDependencies": {
"egg": "^2.14.2",
"egg-bin": "^4.10.0",
"egg-mock": "^3.21.0",
"egg-view-ejs": "^2.0.0",
"egg-view-nunjucks": "^2.1.6",
"eslint": "^5.12.0",
"eslint-config-egg": "^7.1.0",
"puppeteer": "^1.11.0",
"supertest": "^3.3.0",
"uglify-js": "^3.3.21",
"urllib": "^2.34.1"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"dev": "egg-bin dev",
"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",
"uglify": "uglifyjs lib/fixtures/decode.js -o lib/fixtures/decode.min.js"
},
"files": [
"app",
"lib",
"config",
"agent.js",
"app.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-view-assets.git"
},
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-view-assets#readme",
"author": "popomore",
"license": "MIT"
}