-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
49
50
51
52
53
54
55
{
"name": "walt-packages",
"version": "1.1.0",
"description": "Walt packages",
"private": true,
"main": "index.js",
"scripts": {
"postinstall": "lerna bootstrap",
"validate": "lerna run validate",
"test": "npm run build && lerna run test",
"build": "lerna run build --parallel",
"coverage": "lerna run coverage",
"publish": "lerna publish",
"clean": "lerna clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ballercat/walt.git"
},
"keywords": [
"walt",
"javascript",
"webassembly",
"wasm",
"compiler",
"js",
"ast"
],
"author": "Arthur Buldauskas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ballercat/walt/issues"
},
"homepage": "https://github.com/ballercat/walt#readme",
"devDependencies": {
"babel-plugin-minify-dead-code-elimination": "^0.5.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-register": "^6.26.0",
"lerna": "^2.11.0",
"nearley": "^2.15.1",
"pirates": "^4.0.0",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-uglify": "^6.0.0"
},
"nyc": {
"cache": true
}
}