-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 978 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
37
38
{
"name": "team-assigner",
"version": "1.0.0",
"description": "Assign small groups for children's events",
"main": "index.ts",
"scripts": {
"pretest": "tsc --noEmit",
"test": "mocha --require ts-node/register test/**/*.ts",
"start": "ts-node index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshden/team-assigner.git"
},
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/joshden/team-assigner/issues"
},
"homepage": "https://github.com/joshden/team-assigner#readme",
"devDependencies": {
"@types/lodash": "^4.14.104",
"@types/node": "^9.4.6",
"@types/xlsx": "0.0.36",
"lodash": "^4.17.11",
"mocha": "^5.0.4",
"ts-mockito": "^2.3.0",
"ts-node": "^5.0.1",
"typescript": "^2.7.2",
"xlsx": "^0.12.3"
},
"dependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"chai": "^4.1.2",
"moment": "^2.21.0"
}
}