-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "nollup",
"description": "Rollup-compatible bundler for development.",
"version": "0.21.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/PepsRyuu/nollup.git"
},
"homepage": "https://github.com/PepsRyuu/nollup",
"scripts": {
"test": "mocha-istanbul-ui \"test/cases/**/*.js\" --instrument --console --once",
"test:ui": "mocha-istanbul-ui \"test/cases/**/*.js\" --instrument --watch",
"test:headless": "xvfb-run npm run test",
"test:mocha": "mocha \"test/cases/**/*.js\""
},
"bin": {
"nollup": "./lib/cli.js"
},
"dependencies": {
"@rollup/pluginutils": "^3.0.8",
"acorn": "^8.1.0",
"chokidar": "^3.5.1",
"convert-source-map": "^1.5.1",
"express": "^4.16.3",
"express-history-api-fallback": "^2.2.1",
"express-http-proxy": "^1.5.1",
"magic-string": "^0.25.7",
"mime-types": "^2.1.29",
"source-map": "^0.5.6",
"source-map-fast": "npm:[email protected]",
"ws": "^7.5.3"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.3.0",
"mocha-istanbul-ui": "^0.4.1",
"proxyquire": "^2.0.1",
"requirejs": "^2.3.6",
"rollup": "^2.79.1"
}
}