-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "unexpected-assetgraph",
"version": "1.1.2",
"description": "Unexpected assertions for assetgraph and plugins",
"main": "lib/unexpected-assetgraph.js",
"directories": {
"test": "test"
},
"dependencies": {
"acorn": "^7.1.0",
"acorn-jsx": "^5.0.2",
"escodegen": "^1.12.0",
"urltools": "^0.4.1"
},
"devDependencies": {
"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"
},
"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-traverse.git"
},
"keywords": [
"assetgraph",
"unexpected",
"assertions"
],
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"nyc": {
"include": [
"lib/**"
]
}
}