forked from lightscript/lightscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 713 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "lightscript",
"version": "0.5.3",
"description": "LightScript faux-monorepo",
"author": "Alex Rattray <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lightscript/lightscript.git"
},
"dependencies": {
"chalk": "^1.1.3",
"lerna": "^2.0.0-rc.5",
"mkdirp": "^0.5.1"
},
"scripts": {
"postinstall": "npm run clean && npm run setup",
"setup": "npm run self-link && lerna bootstrap --npm-client yarn",
"self-link": "./scripts/selfLink.js babel-plugin-lightscript babel-preset-lightscript",
"clean": "lerna clean --yes",
"test": "lerna run test",
"release": "node ./scripts/release.js"
}
}