-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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
51
52
53
{
"name": "codenames",
"version": "1.0.0",
"description": "Dead names: Not codenames - wildnames - catnames - codenames in the wild",
"main": "dist/index",
"types": "dist/index",
"engines": {
"node": "6.5.0",
"npm": "3.x"
},
"scripts": {
"tsc": "tsc",
"ts-node": "ts-node",
"test": "mocha -r ts-node/register test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanshelly/codenames.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nathanshelly/codenames/issues"
},
"homepage": "https://github.com/nathanshelly/codenames#readme",
"dependencies": {
"@types/express": "^4.0.39",
"@types/lodash": "^4.14.81",
"@types/morgan": "^1.7.35",
"@types/node": "^8.0.50",
"check-word": "^1.1.0",
"express": "^4.16.2",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"ts-node": "^3.3.0",
"typescript": "^2.6.1",
"ws": "^3.3.0"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/express": "^4.0.39",
"@types/lodash": "^4.14.81",
"@types/mocha": "^2.2.44",
"@types/morgan": "^1.7.35",
"@types/node": "^8.0.47",
"@types/ws": "^3.2.0",
"chai": "^4.1.2",
"check-word": "^1.1.0",
"mocha": "^4.0.1",
"morgan": "^1.9.0",
"ts-mockito": "^2.2.7"
}
}