This repository has been archived by the owner on Feb 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 3.15 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
{
"name": "ndarray-transfinite-interpolation",
"version": "1.0.0",
"description": "Fill an n-dimensional array by interpolating function that define the boundaries",
"main": "index.js",
"author": {
"name": "Ricky Reusser",
"email": "[email protected]"
},
"contributors": [
{
"name": "Ricky Reusser",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scijs/ndarray-transfinite-interpolation.git"
},
"bugs": {
"url": "https://github.com/scijs/ndarray-transfinite-interpolation/issues",
"email": "[email protected]"
},
"scripts": {
"lint": "npm run semistandard",
"test": "npm run lint && mocha",
"start": "node www/scripts/server.js | garnish",
"www:tunnel": "lt --port 9966",
"www:clean": "rm -rf www/dist",
"www:build:staticjs": "browserify www/src/static.js -g [ babelify --presets [ es2015 ] ] | uglifyjs -cm > www/dist/bundle.js",
"www:build:indexjs": "cp www/src/*.js www/dist/",
"www:build:js": "npm run www:build:staticjs && npm run www:build:indexjs",
"www:build:html": "node www/scripts/build.js --pattern=www/src/*.html --dest=www/dist/",
"www:build:css": "cp www/src/*.css www/dist/",
"www:build:fonts": "if [ -e www/src/fonts ]; then cp -r www/src/fonts www/dist/fonts; fi",
"www:build:images": "if [ -e www/src/images ]; then cp -r www/src/images/* www/dist/images/; fi",
"www:build": "mkdir -p www/dist && npm run www:build:html && npm run www:build:js && npm run www:build:css && npm run www:build:fonts && npm run www:build:images",
"www:build:nohtml": "mkdir -p www/dist && npm run www:build:js && npm run www:build:css && npm run www:build:fonts && npm run www:build:images",
"www:deploy:gh": "npm run www:build && gh-pages -d www/dist",
"www:deploy:s3": "npm run www:build:nohtml && node www/scripts/deploy-to-s3.js",
"www:deploy:s3:snapshot": "npm run www:build:nohtml && node www/scripts/deploy-to-s3.js --snapshot"
},
"keywords": [],
"devDependencies": {
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"budo": "^9.0.0",
"chai": "^3.5.0",
"copy-paste": "^1.3.0",
"cwise": "^1.0.9",
"escape-html": "^1.0.3",
"flatten": "^1.0.2",
"garnish": "^5.2.0",
"gh-pages": "^0.11.0",
"gl-mat4": "^1.1.4",
"glob": "^7.0.5",
"html": "^1.0.0",
"hyperstream": "^1.2.2",
"inject-lr-script-stream": "^1.1.1",
"isndarray": "^1.0.0",
"minimist": "^1.2.0",
"mocha": "^3.0.2",
"mouse-change": "^1.3.0",
"mouse-wheel": "^1.2.0",
"ndarray": "^1.0.18",
"ndarray-grid-connectivity": "https://github.com/scijs/ndarray-grid-connectivity.git",
"ndarray-scratch": "^1.2.0",
"ndarray-vector-fill": "^1.0.0",
"openurl": "^1.1.1",
"regl": "^1.0.0",
"s3": "^4.4.0",
"simple-html-index": "^1.4.0",
"stream-to-string": "^1.1.0",
"string-to-stream": "^1.1.0",
"through2": "^2.0.1",
"util-extend": "^1.0.3",
"xtend": "^4.0.1"
},
"dependencies": {
"ndarray-vector-fill": "^1.0.0"
},
"semistandard": {
"globals": [
"describe",
"it",
"beforeEach"
]
}
}