forked from Kitware/vtk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.03 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
81
82
83
{
"name": "vtk.js",
"version": "0.0.0-semantically-release",
"description": "Visualization Toolkit for the Web",
"repository": {
"type": "git",
"url": "git+https://github.com/kitware/vtk-js.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kitware/vtk-js/issues"
},
"homepage": "https://github.com/kitware/vtk-js#readme",
"main": "./dist/vtk.js",
"dependencies": {
"base64-js": "1.2.0",
"commander": "2.9.0",
"shelljs": "0.7.7",
"gh-pages": "1.0.0",
"pako": "1.0.5",
"jszip": "3.1.3",
"blueimp-md5": "2.7.0",
"seedrandom": "2.4.3",
"gl-matrix": "2.3.1"
},
"devDependencies": {
"babel-plugin-istanbul": "4.1.4",
"electron": "1.6.11",
"eslint-config-prettier": "2.2.0",
"eslint-plugin-prettier": "2.1.2",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage": "1.1.1",
"karma-electron": "5.2.1",
"karma-tap": "3.1.1",
"karma-tap-pretty-reporter": "3.0.5",
"karma-webpack": "2.0.3",
"kw-doc": "1.1.1",
"kw-web-suite": "3.1.1",
"prettier": "1.4.4",
"resemblejs": "2.2.4",
"tap-markdown": "1.2.1",
"tap-spec": "4.1.1",
"tape": "4.6.3",
"tape-catch": "1.0.6",
"xml2js": "0.4.17"
},
"scripts": {
"validate": "prettier --single-quote --trailing-comma es5 --print-width 100 --list-different \"Sources/**/*.js\"",
"reformat": "prettier --single-quote --trailing-comma es5 --print-width 100 --write \"Sources/**/*.js\"",
"reformat-only": "prettier --single-quote --trailing-comma es5 --print-width 100 --write",
"doc": "kw-doc -c ./Documentation/config.js",
"doc:www": "npm t -- --single-run && kw-doc -c ./Documentation/config.js -s",
"doc:publish": "kw-doc -c ./Documentation/config.js -mp",
"example": "node ./Utilities/ExampleRunner/example-runner-cli.js -c ./Documentation/config.js",
"build": "webpack --progress --colors",
"build:debug": "webpack --progress --colors --display-modules",
"build:release": "npm run build -- -p",
"test": "karma start ./karma.conf.js",
"test:travis2": "karma start ./karma.conf.js --browsers ChromeHeadless --single-run",
"test:travis": "karma start ./karma.conf.js --browsers Electron --single-run",
"test:debug": "karma start ./karma.conf.js --no-single-run",
"commit": "git cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"bin": {
"vtkDataConverter": "./Utilities/DataGenerator/convert-cli.js",
"xml2json": "./Utilities/XMLConverter/xml2json-cli.js"
},
"nyc": {
"include": [
"Sources/**/*.js"
],
"exclude": [
"Sources/**/test/*.js"
]
}
}