-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
{
"name": "node-rnr",
"bin_name": "rnr",
"version": "0.6.12",
"description": "Record & Replay HTTP streams by node.js",
"main": "dest/bundle.js",
"scripts": {
"build": "NODE_MODULES=0 node ./build/set-babelrc.js && ./node_modules/.bin/rollup -c",
"postbuild": "echo '#!/usr/bin/env node' > ./bin/rnr.js && cat ./dest/bundle.js >> ./bin/rnr.js",
"prestart": "npm run build",
"start": "node ./dest/bundle.js",
"pretest": "NODE_ENV=development npm run build",
"test": "NODE_MODULES=commonjs node ./build/set-babelrc.js && ./node_modules/.bin/ava -s",
"posttest": "npm run build",
"prepublish": "npm run test && NODE_ENV=production npm run build"
},
"keywords": [
"rollup"
],
"author": "differui<[email protected]>",
"bin": {
"rnr": "bin/rnr.js"
},
"files": [
"bin"
],
"license": "MIT",
"ava": {
"require": [
"babel-register"
],
"files": [
"test/**/*.spec.js"
],
"sources": [
"test/**/*.js"
],
"babel": {
"presets": [
"env"
]
}
},
"dependencies": {
"babel-runtime": "^6.23.0",
"boxen": "^1.1.0",
"colors": "^1.1.2",
"fs-extra": "^3.0.1",
"http-proxy": "^1.16.2",
"meow": "^3.7.0",
"sha1": "^1.1.1"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-watch": "^3.2.2"
}
}