forked from vidartf/widget-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "widget-gen",
"version": "0.5.2",
"description": "A node package for generating jupyter widget definitions from a JSON schema",
"main": "src/index.ts",
"bin": {
"widgetgen": "./main.js"
},
"directories": {
"test": "test",
"lib": "lib"
},
"scripts": {
"test": "mocha",
"test:cov": "nyc mocha",
"build": "tsc && node ./scripts/copy-files.js",
"start": "node main.js",
"manual": "npm run build && node main.js -o manual ./test/definitions/test2.py python js ts java",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vidartf/widget-gen.git"
},
"keywords": [
"jupyter",
"widgets",
"generation"
],
"author": "Vidar Tonaas Fauske",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/vidartf/widget-gen/issues"
},
"homepage": "https://github.com/vidartf/widget-gen",
"dependencies": {
"@phosphor/signaling": "^1.2.2",
"commander": "^2.13.0",
"fs-extra": "^6.0.1",
"nunjucks": "^3.1.0",
"source-map-support": "^0.5.3"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/fs-extra": "^5.0.2",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.2",
"@types/nunjucks": "^3.0.0",
"chai": "^4.1.2",
"json-validation": "^1.0.4",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"rimraf": "^2.6.2",
"typescript": "~2.8.3"
},
"nyc": {
"include": [
"lib/**/*.js",
"lib/**/*.jsx"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}