-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
{
"name": "@code-dot-org/maze",
"version": "2.16.0",
"description": "standalone project for the Maze app type",
"main": "dist/main.js",
"scripts": {
"build": "webpack -p",
"build:dev": "webpack --progress --colors --mode=development",
"build:demo": "webpack --config demo/webpack.config.js -p",
"lint": "eslint --ext .js src/ test",
"postversion": "git push && git push --tags && npm publish",
"preversion": "npm run test",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "npm run test:unit -- --watch",
"version": "npm run build",
"watch": "webpack-dev-server --progress --colors"
},
"repository": {
"type": "git",
"url": "[email protected]:code-dot-org/maze.git"
},
"author": "Code.org Contributors",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-classes": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"codecov": "^3.0.0",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.1.3",
"webpack": "^5.97.1",
"webpack-cli": "^3.1.1"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testURL": "http://localhost:8080"
}
}