-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "assetgraph-rollup",
"version": "0.1.0",
"description": "Add rollup bundling support to assetgraph",
"main": "lib/assetgraph-rollup.js",
"directories": {
"test": "test"
},
"devDependencies": {
"assetgraph": "^6.2.2",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"prettier": "~2.4.1",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2",
"unexpected": "^11.15.0",
"unexpected-assetgraph": "^1.1.2"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,css,md}'",
"test": "mocha",
"test:ci": "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-rollup.git"
},
"keywords": [
"assetgraph",
"rollup",
"bundle",
"esm"
],
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"nyc": {
"include": [
"lib/**"
]
},
"dependencies": {}
}