forked from nglviewer/ngl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.28 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
{
"name": "ngl",
"version": "1.0.0-beta.3",
"description": "Scalable molecular graphics for the web",
"main": "dist/ngl.js",
"module": "dist/ngl.esm.js",
"scripts": {
"lint": "npm run-script lint-src && npm run-script lint-test && npm run-script lint-script",
"lint-src": "standard \"src/**/*.js\"",
"lint-test": "standard --env mocha \"test/**/*.js\"",
"lint-script": "standard --global stage --global NGL \"examples/scripts/**/*.js\"",
"prebuild": "npm run-script lint",
"build": "rollup -c",
"postbuild": "node ./scripts/makeScriptsList.js",
"pretest": "npm run build",
"test": "mocha",
"preversion": "npm test",
"version": "npm run-script build-min && git add -A dist",
"postversion": "git push && git push --tags",
"prepublish": "npm test",
"devpublish": "npm publish --tag next",
"doc": "esdoc",
"watch": "rollup -c -w",
"deploy": "./scripts/deploy.sh prerelease",
"gallery": "./scripts/gallery.sh",
"prerelease": "./scripts/release.sh prerelease",
"build-min": "rollup -c && uglifyjs build/js/ngl.dev.js -cm > dist/ngl.js && cp build/js/ngl.esm.js dist/ngl.esm.js"
},
"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": {
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.26.0",
"babelrc-rollup": "^3.0.0",
"chai": "^4.1.1",
"cheerio": "^1.0.0-rc.1",
"esdoc": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"mocha": "^3.5.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.3.1",
"slimerjs": "^0.10.3",
"standard": "^10.0.3",
"uglify-js": "^3.1.1"
},
"dependencies": {}
}