-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.09 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
71
72
73
74
75
76
77
78
79
80
{
"name": "widget-gen",
"version": "0.8.1",
"description": "A node package for generating jupyter widget definitions from a JSON schema",
"keywords": [
"jupyter",
"widgets",
"generation"
],
"homepage": "https://github.com/vidartf/widget-gen",
"bugs": {
"url": "https://github.com/vidartf/widget-gen/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vidartf/widget-gen.git"
},
"license": "BSD-3-Clause",
"author": "Vidar Tonaas Fauske",
"main": "src/index.ts",
"bin": {
"widgetgen": "./main.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "tsc && node ./scripts/copy-files.js",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"manual": "mkdirp ./manual && npm run build && node main.js -o manual ./test/definitions/test2.py python js ts java",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"prettier": "prettier --write \"(src|test|scripts)/**/*.[jt]s\"",
"prettier:check": "prettier --check \"(src|test|scripts)/**/*.[jt]s\"",
"start": "node main.js",
"test": "mocha \"./test/test*.js\"",
"test:cov": "nyc mocha \"./test/test*.js\"",
"update": "update-dependency --minimal --regex .*"
},
"nyc": {
"include": [
"lib/**/*.js",
"lib/**/*.jsx"
],
"instrument": true,
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true
},
"dependencies": {
"@lumino/signaling": "^1.2.2",
"commander": "^5.0.0",
"fs-extra": "^9.0.0",
"nunjucks": "^3.1.0",
"source-map-support": "^0.5.3"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.3",
"@types/nunjucks": "^3.0.0",
"chai": "^4.1.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"json-validation": "^1.0.4",
"mkdirp": "^1.0.3",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prettier": "^2.0.1",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}