forked from nglviewer/ngl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.34 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ngl",
"version": "2.0.0-dev.32",
"description": "Scalable molecular graphics for the web",
"main": "dist/ngl.js",
"module": "dist/ngl.esm.js",
"scripts": {
"lint": "npm run lint-src && npm run lint-test && npm run lint-script",
"lint-src": "standard \"src/**/*.js\"",
"lint-test": "standard --env mocha \"test/**/*.js\"",
"lint-script": "standard --global stage --global NGL \"examples/scripts/**/*.js\"",
"ts": "tsc && copyfiles src/shader/*.vert src/shader/*.frag build/js/ && copyfiles src/shader/chunk/*.glsl build/js/ && cp package.json build/js/",
"prebuild": "npm run lint",
"build": "npm run ts && rollup -c",
"postbuild": "node ./scripts/makeScriptsList.js",
"test": "jest",
"preversion": "npm test",
"version": "npm run build-min && git add -A dist",
"postversion": "git push && git push --tags",
"prepublish": "npm test",
"devpublish": "npm publish --tag next",
"doc": "typedoc --mode file --includes doc/usage/ --media doc/usage/ --out build/docs/ ./src/",
"watch": "rollup -c -w",
"deploy": "./scripts/deploy.sh prerelease",
"gallery": "./scripts/gallery.sh",
"prerelease": "./scripts/release.sh prerelease",
"build-min": "npm run build && uglifyjs build/js/ngl.dev.js -cm > dist/ngl.js && cp build/js/ngl.esm.js dist/ngl.esm.js"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.spec\\.ts$"
},
"homepage": "https://github.com/arose/ngl#readme",
"repository": {
"type": "git",
"url": "https://github.com/arose/ngl.git"
},
"bugs": {
"url": "https://github.com/arose/ngl/issues"
},
"files": [
"dist"
],
"author": "Alexander Rose <[email protected]>",
"contributors": [],
"license": "MIT",
"keywords": [
"molecular graphics",
"molecular structure",
"chemical structure",
"science"
],
"devDependencies": {
"@types/chroma-js": "^1.3.4",
"@types/jest": "^22.2.2",
"@types/node": "^9.6.1",
"@types/promise-polyfill": "^6.0.0",
"@types/signals": "1.0.1",
"@types/sprintf-js": "^1.1.0",
"@types/three": "^0.91.3",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babelrc-rollup": "^3.0.0",
"chai": "^4.1.1",
"chroma-js": "^1.3.6",
"copyfiles": "^2.0.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"mocha": "^5.0.5",
"promise-polyfill": "^7.1.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-watch": "^4.3.1",
"signals": "^1.0.0",
"slimerjs": "git+https://github.com/laurentj/slimerjs.git#c3a573ceee985a4eaf9af66bedc83128122bd984",
"source-map-support": "^0.5.4",
"sprintf-js": "git+https://github.com/alexei/sprintf.js.git#36b04b33975e597b03737c3ed0a2a49ec1b2e8c4",
"standard": "^11.0.1",
"three": "^0.91.0",
"ts-jest": "^22.4.2",
"typedoc": "^0.11.1",
"typescript": "^2.8.1",
"uglify-js": "^3.3.17"
},
"dependencies": {}
}