-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "bulls-cows-solver",
"version": "0.0.11",
"description": "Get all the possible answers for Bulls and Cows game, based on the history of guesses in one round.",
"main": "dist/bulls-cows-solver.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve",
"build": "webpack",
"test": "webpack -c webpack.config-test.js && mocha ./__test__.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frank-deng/bulls-cows-solver.git"
},
"keywords": [
"Game",
"Solver",
"Bulls and Cows"
],
"author": "Frank Deng",
"license": "MIT",
"bugs": {
"url": "https://github.com/frank-deng/bulls-cows-solver/issues"
},
"homepage": "https://github.com/frank-deng/bulls-cows-solver#readme",
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.6",
"html-webpack-plugin": "^5.3.2",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mocha": "^9.0.2",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"raw-loader": "^4.0.2",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-rc.0",
"webpack-node-externals": "^3.0.0"
}
}