-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 942 Bytes
/
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
{
"name": "ndarray-gradient",
"version": "1.0.0",
"description": "Finds the gradient of an ndarray using finite differences",
"main": "fdg.js",
"directories": {
"example": "example",
"test": "test"
},
"dependencies": {
"cwise-compiler": "^1.0.0",
"dup": "^1.0.0"
},
"devDependencies": {
"ndarray": "^1.0.15",
"ndarray-pack": "^1.1.1",
"ndarray-scratch": "^1.1.1",
"ndarray-show": "^1.1.0",
"tape": "^3.0.0",
"ndarray-unpack": "^1.0.0"
},
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mikolalysenko/ndarray-gradient.git"
},
"keywords": [
"gradient",
"ndarray",
"finite",
"difference"
],
"author": "Mikola Lysenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikolalysenko/ndarray-gradient/issues"
},
"homepage": "https://github.com/mikolalysenko/ndarray-gradient"
}