-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
{
"name": "problem-map-generator",
"version": "0.6.2",
"description": "Problem Map Generator",
"main": "dist/problem-map-generator.node.min.js",
"repository": {
"type": "git",
"url": "https://github.com/marcbreitung/problem-map-generator.git"
},
"scripts": {
"build": "npm run test && npm run webpack",
"test": "npm run eslint && npm run test-mocha",
"webpack": "webpack --config webpack.config.js",
"eslint": "eslint --ext .js lib",
"test-mocha": "nyc --reporter=text --reporter=lcov --reporter=text-lcov mocha --ui tdd --require babel-register test/**/*.js --reporter spec",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"author": "Marc Breitung",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^6.0.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.3.0",
"sinon": "^7.2.7",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}