-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "@njlr/seq",
"version": "3.8.2",
"entry": "./src/index.js",
"main": "./lib/index.js",
"module": "./esm/index.js",
"repository": "[email protected]:njlr/seq.git",
"author": "njlr <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup -c && rollup -c rollup.esm.config.js",
"docs": "rollup -c rollup.esm.config.js && rm -rf docs && esdoc",
"test": "jest",
"prepare": "rollup -c && rollup -c rollup.esm.config.js",
"prepublishOnly": "yarn test && yarn build"
},
"jest": {
"testURL": "http://localhost"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-pipeline-operator": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"core-js": "^3.4.1",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.1",
"esdoc-standard-plugin": "^1.0.0",
"jest": "^24.9.0",
"regenerator-runtime": "^0.11.1",
"rollup": "^1.27.1",
"rollup-plugin-babel": "^4.0.0-beta.0"
}
}