-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 KB
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
{
"name": "@jslib-book/clone1",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"jsnext:main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"scripts": {
"build:self": "rollup -c config/rollup.config.js",
"build:esm": "rollup -c config/rollup.config.esm.js",
"build:aio": "rollup -c config/rollup.config.aio.js",
"build": "npm run build:self && npm run build:esm && npm run build:aio",
"test": "cross-env NODE_ENV=test nyc mocha",
"test:puppeteer": "node test/browser/puppeteer.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.18.9",
"babel-plugin-istanbul": "^6.1.1",
"cross-env": "^7.0.3",
"expect.js": "^0.3.1",
"mocha": "^3.5.3",
"mocha-jsdom": "^2.0.0",
"nyc": "^15.1.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.12.5",
"@babel/runtime-corejs3": "^7.12.5",
"core-js": "^3.7.0"
}
}