-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "@code-dot-org/blockly",
"version": "4.1.0",
"description": "Code.org fork of google/blockly for use within the Code Studio learning environment.",
"main": "dist/blockly.js",
"repository": {
"type": "git",
"url": "http://github.com/code-dot-org/blockly.git"
},
"engines": {
"node": ">=8.15.0",
"npm": ">=6.4.1"
},
"files": [
"dist",
"i18n",
"media"
],
"scripts": {
"build": "webpack-cli",
"build:dev": "DEV=1 webpack-cli",
"lint": "eslint --ext .js .",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"test": "karma start --single-run",
"test:coverage": "COVERAGE=1 karma start --single-run",
"test:watch": "karma start",
"report-coverage": "codecov"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"codecov": "^3.0.4",
"eslint": "^6.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-prettier": "^3.0.1",
"google-closure-compiler": "~20180610.0.2",
"google-closure-library": "~20170124.0.0",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-custom": "^1.1.9",
"pre-commit": "^1.2.2",
"prettier": "1.16.1",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-closure-compiler": "^2.1.6"
}
}