-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
38 lines (38 loc) · 1.19 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
{
"name": "scatterjs",
"version": "1.0.0",
"description": "",
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna exec -- babel --config-file ../../babel.config.js --out-dir dist src",
"links": "lerna exec -- yarn link",
"publish": "lerna publish && npm run pack && git add . && git commit -m \"version\" && git push origin head",
"testfile": "mocha --require @babel/register --exit --timeout 1000000",
"test": "npm run testfile \"./packages/**/test/**/*.spec.js\"",
"pack": "webpack-cli --mode=production --display-error-details"
},
"author": "GetScatter",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.5.4"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.5.5",
"@babel/runtime": "^7.0.0",
"babel-loader": "^8.0.2",
"babel-preset-minify": "^0.5.0-alpha.3cc09dcf",
"chai": "^4.1.2",
"concurrently": "^4.0.1",
"lerna": "^3.15.0",
"mocha": "^5.2.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"yarn": "^1.9.4"
}
}