-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "24game-solver",
"version": "1.0.2",
"description": "Solve 24 Game with less duplicated results.",
"main": "24game-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/24game-solver.git"
},
"keywords": [
"24game",
"solver"
],
"author": "frank-deng",
"license": "MIT",
"bugs": {
"url": "https://github.com/frank-deng/24game-solver/issues"
},
"homepage": "https://github.com/frank-deng/24game-solver#readme",
"browserslist": [
"> 0.1%",
"not dead",
"ie < 11"
],
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
"core-js": "^3.16.1",
"cross-env": "^7.0.3",
"cssnano": "^5.0.7",
"expression-calculator": "^1.0.7",
"html-webpack-plugin": "^5.3.2",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mocha": "^9.0.3",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"raw-loader": "^4.0.2",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-rc.0",
"webpack-node-externals": "^3.0.0"
}
}