forked from rollup/rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.26 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "rollup",
"version": "0.54.0",
"description": "Next-generation ES6 module bundler",
"main": "dist/rollup.js",
"module": "dist/rollup.es.js",
"jsnext:main": "dist/rollup.es.js",
"typings": "dist/typings/node-entry.d.ts",
"bin": {
"rollup": "./bin/rollup"
},
"scripts": {
"pretest": "npm run build",
"test": "npm run test:only",
"test:only": "mocha",
"test:leak": "node --expose-gc test/leak/index.js",
"test:quick": "rollup -c && mocha -b",
"pretest-coverage": "npm run build",
"test-coverage": "rm -rf coverage/* && istanbul cover --report json node_modules/.bin/_mocha -- -u exports -R spec test/test.js",
"posttest-coverage": "remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.json -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.lcov -t lcovonly -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped -t html -b dist",
"ci": "npm run test-coverage && codecov < coverage/coverage-remapped.lcov",
"build": "git rev-parse HEAD > .commithash && rollup -c && tsc -p tsconfig-types.json && chmod a+x bin/rollup",
"watch": "rollup -cw",
"prepublishOnly": "npm run lint && npm run test:only && npm run test:leak",
"prepare": "npm run build",
"lint": "eslint src browser bin test/test.js test/*/index.js test/utils test/**/_config.js"
},
"repository": "rollup/rollup",
"keywords": [
"modules",
"bundler",
"bundling",
"es6",
"optimizer"
],
"author": "Rich Harris",
"contributors": [
"Oskar Segersvärd <[email protected]>",
"Bogdan Chadkin <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup/issues"
},
"homepage": "https://github.com/rollup/rollup",
"devDependencies": {
"@types/acorn": "^4.0.3",
"@types/chokidar": "^1.7.4",
"@types/minimist": "^1.2.0",
"@types/node": "^8.5.8",
"@types/pretty-ms": "^3.0.0",
"acorn": "^5.2.1",
"ansi-escapes": "^3.0.0",
"buble": "^0.18.0",
"chalk": "^2.3.0",
"codecov.io": "^0.1.6",
"console-group": "^0.3.1",
"date-time": "^2.1.0",
"eslint": "^4.11.0",
"eslint-plugin-import": "^2.8.0",
"immutable": "^3.8.2",
"is-reference": "^1.0.0",
"istanbul": "^0.4.3",
"locate-character": "^2.0.0",
"magic-string": "^0.22.4",
"minimist": "^1.2.0",
"mocha": "^4.0.1",
"pretty-ms": "^3.0.1",
"remap-istanbul": "^0.9.5",
"require-relative": "^0.8.7",
"rollup": "^0.51.7",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-string": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-pluginutils": "^2.0.1",
"rollup-watch": "^4.3.1",
"sander": "^0.6.0",
"signal-exit": "^3.0.2",
"source-map": "^0.6.1",
"source-map-support": "^0.5.0",
"sourcemap-codec": "^1.3.0",
"typescript": "^2.6.2",
"uglify-js": "^3.1.9"
},
"files": [
"dist/rollup.browser.js",
"dist/rollup.es.js",
"dist/rollup.js",
"dist/**/*.d.ts",
"typings/package.json.d.ts",
"bin/rollup",
"README.md"
],
"dependencies": {}
}