forked from zzm2q/editor-framework
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.81 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "editor-framework",
"version": "0.6.2",
"description": "A simple framework for making panel based applications.",
"homepage": "https://github.com/cocos-creator/editor-framework",
"repository": {
"type": "git",
"url": "https://github.com/cocos-creator/editor-framework.git"
},
"author": "Firebox Technology",
"license": "MIT",
"bugs": {
"url": "https://github.com/cocos-creator/editor-framework/issues"
},
"scripts": {
"build": "node ./tasks/build-css.js",
"build:dev": "node ./tasks/build-css.js --dev",
"build:native": "node ./tasks/build-native.js",
"build:node-inspector": "node ./tasks/build-node-inspector.js",
"clear": "sh ./tasks/remove-settings.sh",
"start": "node ./tasks/run-dev.js",
"start:no-dev": "node ./tasks/run.js",
"start:node-inspector": "node ./tasks/run-node-inspector.js",
"test": "node ./tasks/run-tests.js"
},
"dependencies": {
"async": "^1.5.2",
"chalk": "^1.1.1",
"chokidar": "^1.4.3",
"chroma-js": "^1.1.1",
"del": "^2.2.0",
"diff": "^2.2.1",
"find-up": "1.1.0",
"fire-fs": "^0.2.4",
"fire-path": "^0.1.9",
"fire-url": "^0.1.7",
"globby": "^5.0.0",
"highlight.js": "^9.4.0",
"lodash": "4.0.0",
"mousetrap": "1.5.3",
"node-polyglot": "^2.0.0",
"os-locale": "1.4.0",
"remarkable": "^1.6.2",
"semver": "5.1.0",
"sinon": "^1.17.3",
"tap": "5.x",
"tap-mocha-reporter": "https://github.com/jwu/tap-mocha-reporter.git",
"winston": "^2.2.0",
"yargs": "^4.3.1"
},
"devDependencies": {
"devtron": "^1.1.0",
"electron-prebuilt": "1.2.7",
"gulp": "3.9.0",
"gulp-babel": "6.1.1",
"gulp-less": "3.0.5",
"gulp-sequence": "0.4.4",
"less": "^2.6.1",
"less-plugin-clean-css": "^1.5.1"
},
"nativeModules": [
"chokidar"
]
}