-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.4 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
{
"name": "problem-search",
"version": "3.9.2",
"description": "AI search problems strategies",
"main": "dist/problem-search.node.min.js",
"repository": {
"type": "git",
"url": "https://github.com/marcbreitung/problem-search.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 -name '*test.js' --recursive ./test/Unit --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-plugin-transform-builtin-extend": "^1.1.2",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^4.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.9.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^3.12.0"
}
}