forked from electrode-io/electrode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
{
"name": "app-builder",
"version": "1.0.0",
"private": true,
"description": "App-Arena App-Platform for NodeJS/React Universal Application",
"repository": {
"type": "git",
"url": "https://github.com/apparena/app-builder"
},
"bugs": {
"url": "https://github.com/apparena/app-builder/issues"
},
"homepage": "http://www.app-arena.com",
"license": "Apache-2.0",
"scripts": {
"test": "lerna bootstrap && lerna run test && gulp build-test",
"test-generator": "gulp test-generator",
"test-boilerplate": "gulp test-boilerplate",
"bootstrap": "lerna bootstrap",
"clean": "npm run nuke && npm run nuke-packages && npm run nuke-samples",
"nuke": "rm -rf node_modules tmp lerna-debug.log npm-debug.log",
"nuke-packages": "rm -rf packages/*/node_modules packages/*/coverage",
"nuke-samples": "rm -rf samples/*/node_modules samples/*/coverage samples/*/dist samples/*/.isomorphic-loader-config.json samples/*/.etmp"
},
"devDependencies": {
"electrode-gulp-helper": "^1.0.5",
"gulp": "^3.9.1",
"lerna": "2.0.0-beta.32",
"lodash": "^4.17.2",
"yeoman-test": "^1.6.0"
},
"engines": {
"node": "^4.4.6 || ^6.2.1",
"npm": "^3.5.3"
}
}