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
53 lines (50 loc) · 2 KB
/
package.json
File metadata and controls
53 lines (50 loc) · 2 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
{
"name": "coding-with-chrome",
"description": "Coding with Chrome",
"version": "2.2.5",
"author": "Markus Bordihn (mbordihn@google.com)",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"blockly": "https://github.com/google/blockly/tarball/master",
"closure-builder": "^1.0.31",
"codemirror": "^5.10.0",
"csslint": "^0.10.0",
"htmlhint": "^0.9.12",
"jquery": "^2.2.0",
"jquery-turtle": "https://github.com/MarkusBordihn/jquery-turtle/tarball/master",
"jsdoc": "^3.4.0",
"jshint": "^2.9.1"
},
"devDependencies": {
"closure-templates": "latest",
"eslint": "latest",
"google-closure-library": "latest",
"jasmine-core": "latest",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-closure": "latest",
"karma-jasmine": "latest",
"npm-check-updates": "latest"
},
"scripts": {
"test": "npm run test-units && npm run test-core",
"pretest": "npm run lint",
"test-units": "npm run build-test-files && karma start unit_tests.conf",
"test-core": "npm run build && karma start core_tests.conf",
"build": "npm run build-static-files && npm run build-remote-files && npm run build-extra-files && npm run rebuild",
"build-cwc-files": "node build/cwc_files.js",
"build-extra-files": "node build/extra_files.js",
"build-remote-files": "node build/remote_files.js",
"build-static-files": "node build/static_files.js",
"build-test-files": "node build/test_files.js",
"build-framework-files": "npm run build-external-frameworks && npm run build-internal-frameworks",
"build-external-frameworks": "node build/external_frameworks.js",
"build-internal-frameworks": "node build/internal_frameworks.js",
"rebuild": "npm run build-framework-files && npm run build-static-files && npm run build-cwc-files",
"documentation": "jsdoc src -r -c documentation.json -d docs",
"lint": "eslint .",
"update": "ncu -u && npm install && npm update && npm test",
"show-updates": "ncu"
}
}