-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "cleargraph",
"version": "7.0.0",
"description": "A library for modeling and traversing graphs",
"main": "dist/index.js",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node": "^13.5.0",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"ts-node": "^8.6.2",
"typedoc": "^0.16.8",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc -d",
"watch": "tsc -w",
"clean": "rm -rf dist && rm -rf docs",
"build-docs": "npx typedoc --out docs src --exclude \"**/*+(index|.spec|.e2e).ts\" --theme minimal --excludePrivate --excludeProtected",
"prepublishOnly": "npm run clean && npm run build && npm run build-docs",
"test": "mocha --require ts-node/register/transpile-only --require source-map-support/register --recursive src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teambit/cleargraph.git"
},
"keywords": [
"bit",
"graph",
"traversal",
"cleargraph",
"clear-graph"
],
"files": [
"/dist"
],
"author": "teambit",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/teambit/cleargraph/issues"
},
"homepage": "https://github.com/teambit/cleargraph#readme"
}