-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 948 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
39
{
"name": "topological-sort",
"version": "0.3.0",
"description": "Topological sort",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/1999/topological-sort.git"
},
"scripts": {
"build": "tsc",
"clean": "rm -fr dist/",
"lint": "tslint -p . -c tslint.json 'src/*.ts'",
"prepublishOnly": "npm run clean && npm run build",
"test:unit": "mocha --require ts-node/register src/*.spec.ts",
"test": "npm run lint && npm run test:unit"
},
"author": "Dmitrii Sorin <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.0",
"mocha": "^6.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"keywords": [
"topological sort",
"topological",
"sort",
"graph",
"dependencies"
],
"types": "dist/index.d.ts"
}