forked from kbaseincubator/narrative-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "@kbase/narrative-utils",
"version": "0.0.6",
"description": "Utility modules and functions for the Jupyterlab Narrative",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"test": "mocha -R spec --ui bdd",
"docs": "typedoc --options tdoptions.json src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kbaseIncubator/narrative-utils.git"
},
"author": "DoE KBase Project",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/kbaseIncubator/narrative-utils/issues"
},
"homepage": "https://github.com/kbaseIncubator/narrative-utils#readme",
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.0",
"chai": "^4.2.0",
"chai-dom": "^1.8.1",
"jsdom": "^14.0.0",
"mocha": "^6.0.2",
"node-fetch": "^2.3.0",
"rimraf": "^2.6.3",
"tslint": "^5.14.0",
"typedoc": "^0.14.2",
"typescript": "3.4.5"
},
"dependencies": {
"bluebird": "^3.5.3",
"moment": "^2.24.0"
}
}