forked from google/coding-with-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"name": "coding-with-chrome",
"description": "Coding with Chrome",
"version": "2.0.0",
"author": "Markus Bordihn (mbordihn@google.com)",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"blockly": "https://github.com/google/blockly/tarball/master",
"closure-builder": "latest",
"codemirror": "latest",
"csslint": "latest",
"htmlhint": "latest",
"jquery": ">=1.7",
"jsdoc": "latest",
"jshint": "latest"
},
"devDependencies": {
"assert": "latest",
"eslint": "latest",
"mocha": "latest"
},
"scripts": {
"lint": "eslint .",
"build": "npm run build-static-files && npm run build-remote-files && npm run build-extra-files && npm run build-cwc-files",
"prebuild": "npm run lint",
"rebuild": "npm run build-static-files && npm run build-cwc-files",
"build-static-files": "node build/static_files.js",
"build-remote-files": "node build/remote_files.js",
"build-extra-files": "node build/extra_files.js",
"build-cwc-files": "node build/cwc_files.js",
"documentation": "jsdoc src -r -c documentation.json -d docs"
}
}