-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 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
41
42
43
44
45
46
47
48
{
"name": "stellar-modules",
"private": true,
"version": 1.0.0,
"repository": {
"type": "git",
"url": "https://github.com/stellarjs/stellarjs"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna exec -- yarn start",
"link": "lerna exec -- yarn link",
"clean": "lerna run clean",
"clean:modules": "lerna clean && rm -rf node_modules",
"compile": "lerna run compile",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"prebootstrap": "yarn",
"postinstall": "lerna run prepublish && lerna run prepare",
"publish": "lerna publish --registry=https://registry.npmjs.org/",
"publish:canary": "lerna publish --canary",
"pretest": "lerna run lint",
"test": "lerna run test",
"precoverage": "lerna run lint:ci",
"coverage": "lerna run test:coverage"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.1",
"chai": "3.5.0",
"chai-as-promised": "^5.3.0",
"coveralls": "^2.13.1",
"jest-junit": "^2.1.0",
"lerna": "^2.0.0-rc.5",
"lodash": "^4.17.4",
"sinon": "^1.17.4",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "2.5.1",
"webpack-node-externals": "^1.6.0"
}
}