-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 895 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
42
{
"name": "libofx",
"version": "1.0.2",
"description": "NodeJS bindings for the libofx library",
"main": "index.js",
"gpyfile": true,
"repository": {
"type": "git",
"url": "git://github.com/clarete/libofxjs.git"
},
"scripts": {
"build": "node-gyp configure && node-gyp build",
"rebuild": "npm run clean && npm run build",
"clean": "node-gyp clean",
"pretest": "npm run build",
"test": "jest $*"
},
"author": "Lincoln Clarete",
"license": "GPL-2.0",
"devDependencies": {
"jest": "^24.7.1"
},
"jest": {
"rootDir": ".",
"testMatch": [
"<rootDir>/tests/*.js"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json"
],
"testPathIgnorePatterns": [
"node_modules/.*"
]
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.13.2",
"node-gyp": "^4.0.0"
}
}