package.json
1.8 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "egg-view-assets",
"eggPlugin": {
"name": "assets",
"dependencies": [
"view"
]
},
"version": "1.8.0",
"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",
"debug": "^4.1.1",
"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": {
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg": "^2.14.2",
"egg-bin": "^4.10.0",
"egg-ci": "^1.11.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",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"dev": "egg-bin dev",
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
"pkgfiles": "egg-bin pkgfiles",
"autod": "autod",
"uglify": "uglifyjs lib/fixtures/decode.js -o lib/fixtures/decode.min.js"
},
"files": [
"app",
"lib",
"config",
"agent.js",
"app.js"
],
"ci": {
"type": "github",
"version": "8, 10, 12, 14, 16",
"license": true
},
"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"
}