-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 924 Bytes
/
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
{
"name": "codegen",
"version": "1.0.0",
"license": "GPL-3.0",
"author": {
"name": "Alexander Kurbatov",
"url": "https://github.com/alkurbatov"
},
"repository": {
"url": "https://github.com/cpp-sc2/codegen"
},
"main": "./src/index.js",
"scripts": {
"clean": "rimraf ./dist",
"generate": "node src/index.js",
"start": "npm run clean && mkdir dist && npm run generate",
"lint": "eslint ./src ./test",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-jest": "^3.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "3.4.2",
"rimraf": "^6.0.1"
}
}