-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "assetgraph-systemjs",
"version": "1.0.0",
"description": "Add systemjs-builder support to assetgraph",
"main": "lib/assetgraph-systemjs.js",
"directories": {
"test": "test"
},
"dependencies": {
"estraverse": "^4.3.0",
"estraverse-fb": "^1.3.2"
},
"devDependencies": {
"assetgraph": "^5.10.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"prettier": "~1.19.1",
"systemjs-asset-plugin": "^3.0.0",
"systemjs-builder": "^0.16.13",
"unexpected": "^11.0.0",
"unexpected-assetgraph": "^1.1.0"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.js'",
"test": "mocha",
"ci": "npm test && npm run lint && npm run coverage",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/assetgraph/assetgraph-systemjs.git"
},
"keywords": [
"assetgraph",
"systemjs",
"systemjs-builder",
"bundle"
],
"license": "BSD-3-Clause",
"nyc": {
"include": [
"lib/**"
]
}
}