This repository has been archived by the owner on Jun 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "node-firebird-native-api",
"version": "0.0.1-beta.1",
"description": "Firebird native API for Node.js",
"gypfile": true,
"main": "dist/lib/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "yarn run clean && tsc",
"build:w": "yarn run clean && tsc -w",
"generate": "node dist/generate-files",
"gyp:clean": "rimraf build",
"gyp:build": "node-gyp build",
"gyp:configure": "node-gyp configure",
"test": "mocha --require source-map-support/register dist/test",
"prepublishOnly": "yarn run build && yarn run gyp:clean && yarn run gyp:configure && yarn run gyp:build && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asfernandes/node-firebird-native-api.git"
},
"keywords": [
"firebird"
],
"author": {
"name": "Adriano dos Santos Fernandes",
"email": "[email protected]",
"url": "https://asfernandes.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/asfernandes/node-firebird-native-api/issues"
},
"homepage": "https://github.com/asfernandes/node-firebird-native-api#readme",
"typings": "./dist/lib/index.d.ts",
"dependencies": {
"@types/node": "^8.0.7",
"bindings": "^1.2.1",
"nan": "^2.6.2",
"node-gyp": "^3.6.2"
},
"devDependencies": {
"@types/fs-extra-promise": "^1.0.2",
"@types/mocha": "^2.2.41",
"@types/power-assert": "^1.4.29",
"@types/temp-fs": "^0.9.27",
"fs-extra-promise": "^1.0.1",
"mocha": "^3.4.2",
"node-cloop-gen": "0.0.1-alpha.3",
"power-assert": "^1.4.4",
"rimraf": "^2.6.1",
"source-map-support": "^0.4.15",
"temp-fs": "^0.9.9",
"typescript": "^2.4.1"
}
}