-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 887 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
{
"name": "@njlr/aseq",
"version": "1.4.0",
"entry": "./src/index.js",
"main": "./lib/index.js",
"repository": "[email protected]:njlr/aseq.git",
"author": "njlr <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf ./lib && rollup -c",
"test": "jest",
"prepublishOnly": "yarn test && yarn build"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-async-generator-functions": "^7.7.4",
"@babel/plugin-proposal-pipeline-operator": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/runtime": "^7.7.4",
"core-js": "^3.4.2",
"jest": "^24.9.0",
"regenerator-runtime": "^0.11.1",
"rollup": "^1.27.1",
"rollup-plugin-babel": "^4.0.0-beta.0"
},
"jest": {
"testURL": "http://localhost"
}
}