-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 951 Bytes
/
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
{
"name": "@swiftcarrot/request",
"version": "0.2.2",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && NODE_ENV=production rollup -c",
"test": "jest --coverage",
"prepublishOnly": "npm test && npm run build"
},
"publishConfig": {
"access": "public"
},
"repository": "[email protected]:swiftcarrot/request.git",
"author": "Wang Zuo <[email protected]> (https://swiftcarrot.com/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"babel-jest": "^24.8.0",
"babel-preset-swiftcarrot": "^1.0.0",
"jest": "^24.8.0",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"frontend-fns": "^0.2.3",
"lodash": "^4.17.15"
}
}