-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
34 lines (34 loc) · 820 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
{
"name": "@algorithms/algorithms",
"version": "0.0.0",
"description": "Teaching people algorithms",
"main": "lib/index.js",
"scripts": {
"start": "npm install && npm run test:live",
"test": "tsc -p . && jest",
"test:live": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basarat/algorithms.git"
},
"keywords": [
"typescript",
"javascript",
"algorithms",
"data-structures"
],
"author": "basaratali@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/basarat/algorithms/issues"
},
"homepage": "https://github.com/basarat/algorithms#readme",
"devDependencies": {
"@types/jest": "22.2.3",
"@types/node": "7.0.12",
"jest": "22.4.3",
"ts-jest": "22.4.3",
"typescript": "2.8.1"
}
}