-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
51
{
"name": "ts-depdraw",
"version": "0.1.10",
"description": "Visualisation of typescript project dependencies.",
"main": "lib/main.js",
"directories": {
"test": "./lib/tests",
"bin": "./bin",
"lib": "./lib"
},
"scripts": {
"test": "mocha lib/tests --recursive --watch",
"build": "tsc",
"start": "node ./bin/ts-depDraw",
"dev": "node --debug=5035 ./bin/ts-depDraw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpyR1014/ts-depDraw.git"
},
"author": "Andrew Jakubowicz <spyr1014@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpyR1014/ts-depDraw/issues"
},
"homepage": "https://github.com/SpyR1014/ts-depDraw#readme",
"devDependencies": {
"@types/benchmark": "^1.0.30",
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/express": "^4.0.34",
"@types/mocha": "^2.2.33",
"@types/node": "0.0.0",
"@types/opn": "^3.0.28",
"@types/sinon": "^1.16.32",
"@types/winston": "0.0.32",
"benchmark": "^2.1.3",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"sinon": "^1.17.6"
},
"dependencies": {
"app-root-path": "^2.0.1",
"body-parser": "^1.16.0",
"express": "^4.14.0",
"immutable": "^3.8.1",
"opn": "^4.0.2",
"typescript": "^2.1.1",
"winston": "^2.3.0"
}
}