forked from nicolaspanel/numjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.4 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
101
102
103
104
105
106
107
108
109
{
"name": "numjs",
"version": "0.13.1",
"description": "Like NumPy, in JavaScript",
"main": "src/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"cwise": "^1.0.8",
"deasync": "^0.1.4",
"lodash": "^4.11.1",
"ndarray": "^1.0.18",
"ndarray-fft": "^1.0.0",
"ndarray-gemm": "^1.0.0",
"ndarray-ops": "^1.2.2",
"sharp": "^0.17.3",
"typedarray-pool": "^1.1.0"
},
"devDependencies": {
"browserify-shim": "^3.8.12",
"chai": "^3.5.0",
"expect.js": "^0.3.1",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-uglify": "latest",
"grunt-gh-pages": "^1.0.0",
"grunt-jsdoc": "^1.1.0",
"grunt-karma": "^0.12.2",
"grunt-semistandard": "^1.0.6",
"grunt-simple-mocha": "^0.4.0",
"ink-docstrap": "^1.1.1",
"jasmine": "^2.2.1",
"jasmine-core": "^2.2.0",
"jit-grunt": "^0.10.0",
"karma": "^0.13.22",
"karma-browserify": "^5.0.1",
"karma-chai": "^0.1.0",
"karma-jasmine": "^0.3.5",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "latest",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.3.4",
"phantomjs-prebuilt": "^2.1.7",
"semistandard": "^7.0.5"
},
"semistandard": {
"globals": [
"HTMLImageElement",
"HTMLCanvasElement",
"nj",
"Image"
]
},
"scripts": {
"test": "grunt test",
"preversion": "grunt test && git ci dist -m 'bump version' --allow-empty ",
"postversion": "npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/nicolaspanel/numjs.git"
},
"keywords": [
"ndarray",
"array",
"multi",
"multidimensional",
"dimension",
"higher",
"image",
"volume",
"webgl",
"tensor",
"matrix",
"linear",
"algebra",
"science",
"numerical",
"computing",
"stride",
"shape",
"numpy"
],
"author": "Nicolas Panel",
"license": "MIT",
"readmeFilename": "README.md",
"browser": {
"./src/images/resize.js": "./src/images/resize-dom.js",
"./src/images/read.js": "./src/images/read-dom.js",
"./src/images/save.js": "./src/images/save-dom.js",
"buffer": "./src/buffer-dom.js"
},
"browserify-shim": {},
"browserify": {
"transform": [
"cwise",
"browserify-shim"
]
},
"standard": {
"globals": [
"HTMLImageElement",
"HTMLCanvasElement",
"nj",
"Image"
]
}
}