-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.55 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
{
"name": "js-type-writer",
"version": "1.0.0",
"description": "Heuristic type inference for JS",
"repository": {
"type": "git",
"url": "https://github.com/jiggum/js-type-writer"
},
"author": "jiggum <0s.dongmin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jiggum/js-type-writer/issues"
},
"homepage": "https://github.com/jiggum/js-type-writer",
"scripts": {
"dict": "cross-env NODE_PATH=./ ts-node script/dict.ts",
"compile": "cross-env NODE_PATH=./ ts-node script/compile.ts",
"replace": "cross-env NODE_PATH=./ ts-node script/replace.ts",
"diagnose": "cross-env NODE_PATH=./ ts-node script/diagnose.ts",
"example/seed": "cross-env NODE_PATH=./ ts-node example/seed.ts",
"example/crossover": "cross-env NODE_PATH=./ ts-node example/crossover.ts",
"example/mutate": "cross-env NODE_PATH=./ ts-node example/mutate.ts",
"example/fitness": "cross-env NODE_PATH=./ ts-node example/fitness.ts",
"GA": "cross-env NODE_PATH=./ ts-node GA/App.ts"
},
"devDependencies": {
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"ts-node": "^10.4.0"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"typescript": "^4.5.2"
}
}