forked from symphonyoss/ContainerJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.26 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
{
"name": "containerjs",
"version": "0.0.0",
"scripts": {
"bootstrap": "if-env CI=true && lerna bootstrap --concurrency 1 || lerna bootstrap",
"build": "lerna run build",
"test": "npm run lint && lerna run test",
"lint": "eslint --ignore-path .gitignore **/*.js",
"postinstall": "npm run bootstrap && node copy-markdown.js",
"test:ui": "cd packages/api-tests && npm run test:ui",
"test:ci": "cd packages/api-tests && npm run test:ci && node generate-test-report.js",
"browser": "npm i & cd packages/api-browser-demo && npm start",
"electron": "npm i & cd packages/api-electron-demo && npm start",
"openfin": "npm i & cd packages/api-openfin-demo && npm start",
"docs": "cd packages/api-specification && npm run docs"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/symphonyoss/containerjs.git"
},
"homepage": "https://github.com/symphonyoss/containerjs#readme",
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"if-env": "^1.0.0",
"lerna": "2.0.0-rc.3",
"marked": "^0.3.6"
}
}