-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.94 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "blockly",
"version": "3.20200924.4",
"description": "Blockly is a library for building visual programming editors.",
"keywords": [
"blockly"
],
"repository": {
"type": "git",
"url": "https://github.com/google/blockly.git"
},
"bugs": {
"url": "https://github.com/google/blockly/issues"
},
"homepage": "https://developers.google.com/blockly/",
"author": {
"name": "Neil Fraser"
},
"scripts": {
"build": "gulp build",
"build:blocks": "gulp buildBlocks",
"build:compressed": "gulp buildCompressed",
"build:core": "gulp buildCore",
"build:debug": "gulp buildCompressed --verbose --debug",
"build:debug:log": "npm run build:debug > build-debug.log 2>&1 && tail -3 build-debug.log",
"build:strict": "gulp buildCompressed --verbose --strict",
"build:strict:log": "npm run build:strict > build-debug.log 2>&1 && tail -3 build-debug.log",
"build:generators": "gulp buildGenerators",
"build:langfiles": "gulp buildLangfiles",
"build:uncompressed": "gulp buildUncompressed",
"bump": "npm --no-git-tag-version version 3.$(date +'%Y%m%d').0",
"license": "gulp checkLicenses",
"lint": "eslint .",
"package": "gulp package",
"prepare": "npm run package",
"recompile": "gulp gitPreCompile && npm run bump && gulp gitPostCompile",
"release": "gulp gitCreateRC",
"test": "concurrently 'npm run test:prepare' 'sleep 5 && npm run test:run'",
"test:prepare": "npm run test:setupselenium && npm run test:startselenium",
"test:run": "tests/run_all_tests.sh",
"test:setupselenium": "selenium-standalone install --config=./tests/scripts/selenium-config.js",
"test:startselenium": "selenium-standalone start --config=./tests/scripts/selenium-config.js",
"test:compile:advanced": "gulp buildAdvancedCompilationTest",
"typings": "gulp typings",
"updateGithubPages": "gulp gitUpdateGithubPages"
},
"main": "./index.js",
"umd": "./blockly.min.js",
"unpkg": "./blockly.min.js",
"types": "./index.d.ts",
"browser": {
"./node.js": "./browser.js",
"./core.js": "./core-browser.js",
"./blockly-node.js": "./blockly.js"
},
"license": "Apache-2.0",
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"eslint": "^7.6.0",
"eslint-plugin-es5": "^1.5.0",
"google-closure-compiler": "^20200830.0.0",
"google-closure-deps": "^20200719.0.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-series": "^1.0.2",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-umd": "^2.0.0",
"js-green-licenses": "^2.0.1",
"mocha": "^8.1.1",
"rimraf": "^3.0.2",
"selenium-standalone": "^6.17.0",
"through2": "^4.0.2",
"typescript-closure-tools": "^0.0.7",
"webdriverio": "^6.5.2",
"yargs": "^16.0.3"
},
"dependencies": {
"jsdom": "^15.2.1"
}
}