-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "nopodofo",
"version": "1.0.1",
"description": "Node.js native module bindings for PoDoFo",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/corymickelson/NoPoDoFo.git"
},
"scripts": {
"coverage": "nyc tape spec/unit/*.js && nyc report --reporter=text-lcov | coveralls",
"test": "node ./scripts/test-setup.js && tsc -p tsconfig.json && node --expose-gc ./node_modules/.bin/alsatian ./spec/unit/*.js",
"tsc:spec": "tsc -p tsconfig.json",
"build": "cmake-js build -s=c++17",
"build:debug": "cmake-js build -D -s=c++17",
"clean": "cmake-js clean",
"postinstall": "node ./scripts/install.js"
},
"nyc": {
"exclude": [
"spec/**",
"lib/**"
]
},
"keywords": [
"pdf",
"node"
],
"author": "Cory Mickelson <[email protected]> (http://corymickelson.github.io/)",
"homepage": "https://github.com/corymickelson/NoPoDoFo#readme",
"bugs": {
"url": "https://github.com/corymickelson/NoPoDoFo/issues"
},
"license": "ISC",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/node": "^8.10.18",
"@types/tape": "^4.2.32",
"@types/uuid": "^3.4.3",
"alsatian": "^2.3.0",
"benchmark": "^2.1.4",
"coveralls": "^3.0.1",
"gitbook-cli": "2.3.2",
"nyc": "^11.9.0",
"typescript": "^3.0.1",
"uuid": "^3.2.1"
},
"dependencies": {
"cmake-js": "^3.7.3",
"node-addon-api": "1.7.1"
},
"files": [
"scripts",
"src",
"deps",
"tsconfig.json",
"CMakeLists.txt",
"package.json",
"package-lock.json",
"index.js",
"index.d.ts"
]
}