This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
forked from rollup/rollup
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
140 lines (140 loc) · 5.04 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "rollup",
"version": "0.67.3",
"description": "Next-generation ES module bundler",
"main": "dist/rollup.js",
"module": "dist/rollup.es.js",
"jsnext:main": "dist/rollup.es.js",
"typings": "dist/rollup.d.ts",
"bin": {
"rollup": "./bin/rollup"
},
"scripts": {
"build": "shx rm -rf dist && git rev-parse HEAD > .commithash && rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x bin/rollup",
"build:test": "shx rm -rf dist && rollup -c --noBrowser && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x bin/rollup",
"build:bootstrap": "bin/rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x bin/rollup",
"ci:coverage": "npm run test:coverage",
"ci:lint": "npm run lint:nofix && npm run security",
"ci:test": "npm run test && npm run build:bootstrap && npm run test:only",
"lint": "tslint --project . --fix && eslint --fix test/test.js test/*/index.js test/utils.js test/**/_config.js",
"lint:nofix": "tslint --project . && eslint test/test.js test/*/index.js test/utils.js test/**/_config.js",
"perf": "npm run build:test && node --expose-gc scripts/perf.js",
"perf:debug": "node --inspect-brk scripts/perf-debug.js",
"perf:init": "node scripts/perf-init.js",
"postcommit": "git reset",
"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",
"precommit": "lint-staged",
"prepare": "npm run build",
"prepublishOnly": "npm run lint:nofix && npm run security && npm run build && npm run build:bootstrap && npm run test:only && npm run test:typescript && npm run test:leak",
"pretest": "npm run build:test",
"pretest:coverage": "npm run build:test",
"pretest:typescript": "shx rm -rf test/typescript/dist && shx cp -r dist test/typescript/",
"security": "npm audit",
"test": "npm run test:only && npm run test:typescript && npm run test:leak",
"test:coverage": "shx rm -rf coverage/* && istanbul cover --report json node_modules/.bin/_mocha -- -u exports -R spec test/test.js",
"test:leak": "npm i --silent --no-save weak@1 && node --expose-gc test/leak/index.js",
"test:only": "mocha",
"test:quick": "mocha -b",
"test:typescript": "tsc --noEmit -p test/typescript && tsc --noEmit",
"watch": "rollup -cw"
},
"repository": "rollup/rollup",
"keywords": [
"modules",
"bundler",
"bundling",
"es6",
"optimizer"
],
"author": "Rich Harris",
"contributors": [
"Oskar Segersvärd <victorystick@gmail.com>",
"Bogdan Chadkin <trysound@yandex.ru>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup/issues"
},
"homepage": "https://github.com/rollup/rollup",
"dependencies": {
"@types/estree": "0.0.39",
"@types/node": "*"
},
"devDependencies": {
"@types/acorn": "^4.0.3",
"@types/chokidar": "^1.7.5",
"@types/minimist": "^1.2.0",
"@types/pretty-ms": "^3.0.0",
"acorn": "^5.7.3",
"acorn-dynamic-import": "^3.0.0",
"acorn-import-meta": "^0.2.1",
"ansi-escapes": "^3.1.0",
"buble": "^0.19.3",
"chokidar": "^2.0.4",
"console-group": "^0.3.1",
"date-time": "^2.1.0",
"eslint": "^5.6.0",
"eslint-plugin-import": "^2.14.0",
"execa": "^1.0.0",
"fixturify": "^0.3.4",
"hash.js": "^1.1.5",
"husky": "^0.14.3",
"immutable": "^3.8.2",
"is-reference": "^1.1.0",
"istanbul": "^0.4.3",
"lint-staged": "^7.2.2",
"locate-character": "^2.0.5",
"magic-string": "^0.25.1",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"prettier": "^1.14.2",
"pretty-bytes": "^5.1.0",
"pretty-ms": "^4.0.0",
"remap-istanbul": "^0.12.0",
"require-relative": "^0.8.7",
"rollup": "^0.66.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-terser": "^2.0.2",
"rollup-plugin-typescript": "^1.0.0",
"rollup-pluginutils": "^2.3.3",
"sander": "^0.6.0",
"shx": "^0.3.2",
"signal-exit": "^3.0.2",
"source-map": "^0.6.1",
"source-map-support": "^0.5.9",
"sourcemap-codec": "^1.4.1",
"terser": "^3.8.2",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"turbocolor": "^2.6.1",
"typescript": "^3.1.1",
"url-parse": "^1.4.3"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"bin/rollup"
],
"lint-staged": {
"{src,bin,browser,typings}/**/*.ts": [
"tslint --project . --fix",
"prettier --write",
"git add"
],
"test/**/*.ts": [
"tslint --project test/typescript --fix",
"prettier --write",
"git add"
],
"{test/test,test/*/index,test/utils,test/**/_config}.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}