-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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": "debug_trainer",
"version": "6.6.2",
"description": "A tool to create errors so that you can practice debugging them",
"main": "bin/debug_trainer",
"scripts": {
"build": "parcel build src/main.ts --target node --bundle-node-modules --out-file debug_trainer.js",
"dev": "parcel src/main.ts --target node --bundle-node-modules --out-file debug_trainer.js",
"test": "npm run build && elm-test && jest",
"elm-typescript-interop": "elm-typescript-interop"
},
"repository": {
"type": "git",
"url": "http://github.com/kickstartcoding/debug_trainer.git"
},
"bin": {
"debug_trainer": "bin/debug_trainer"
},
"author": "Neurodynamic",
"license": "ISC",
"bugs": {
"url": "http://github.com/kickstartcoding/debug_trainer/issues"
},
"homepage": "http://github.com/kickstartcoding/debug_trainer",
"keywords": [
"debug",
"debugging"
],
"dependencies": {
"colors": "^1.4.0",
"inquirer": "^7.3.3"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.7",
"babel-elm-assets-plugin": "^1.2.3",
"babel-jest": "^26.1.0",
"elm": "^0.19.1-3",
"elm-hot": "^1.1.4",
"elm-test": "^0.19.1",
"elm-typescript-interop": "0.0.17",
"jest": "^26.1.0",
"parcel": "^2.0.0-beta.1",
"parcel-bundler": "^1.12.4",
"typescript": "^3.9.7"
}
}