-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 806 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 806 Bytes
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
{
"name": "libff.js",
"version": "0.0.3",
"description": "Wrapper for a subset of libff functionality",
"main": "dist/libff.js",
"scripts": {
"build": "tsc",
"install": "./install_libff.sh ffi",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"test": "jasmine-ts --config=jasmine.json"
},
"author": "Clearmatics Technologies Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clearmatics/libff.js.git"
},
"dependencies": {
"@saleae/ffi": "^3.0.2"
},
"devDependencies": {
"@types/jasmine": "^3.5.14",
"@types/node": "^14.6.4",
"jasmine": "^3.6.1",
"jasmine-ts": "^0.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"files": [
"dist/**/*",
"install_libff.sh"
]
}