-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "z-sandbox",
"version": "0.0.11",
"description": "A simple javascript sandbox",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ZxBing0066/z-sandbox.git"
},
"scripts": {
"test": "jest test/test.js",
"build": "rm -rf build/ && webpack",
"build:lib": "rm -rf lib/ && babel index.ts -d lib -x \".ts\" --source-maps",
"analyzer": "ANALYZER=true NODE_ENV=production webpack",
"before-publish": "npm run build && npm run build:lib",
"publish:patch": "npm run before-publish && npm version patch && npm publish"
},
"keywords": [
"javascript",
"sandbox",
"js-sandbox"
],
"bugs": {
"url": "https://github.com/ZxBing0066/z-sandbox/issues"
},
"homepage": "https://github.com/ZxBing0066/z-sandbox#readme",
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"ava": "^2.4.0",
"babel-loader": "^8.0.6",
"jasmine": "^3.5.0",
"jest": "^24.9.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"core-js": "^3"
}
}