forked from godaddy/asherah-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "asherah",
"version": "0.0.0",
"description": "Asherah envelope encryption and key rotation library",
"main": "dist/asherah.js",
"repository": {
"type": "git",
"url": "https://github.com/jgowdy/asherah-cobhan.git"
},
"scripts": {
"build": "node-gyp build && mkdir -p dist/ && cp build/Release/asherah.node dist/asherah.node && cp src/asherah.d.ts dist/asherah.d.ts",
"preinstall": "scripts/download-libraries.sh",
"install": "CFLAGS=-fexceptions CXXFLAGS=-fexceptions node-gyp rebuild",
"test:mocha": "mocha",
"test": "nyc npm run test:mocha",
"posttest": "npm run lint",
"lint": "eslint src/ --ext .ts --fix"
},
"keywords": [],
"author": "Jeremiah Gowdy <[email protected]>",
"license": "MIT",
"files": [
"binding.gyp",
"src/napiasherah.cc",
"dist/asherah.d.ts",
"scripts/download-libraries.sh",
"build/Release/napi-asherah.node",
"SHA256SUMS",
"SHA256SUMS-darwin",
".asherah-version"
],
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"benchmark": "^2.1.4",
"chai": "^4.3.6",
"eslint": "^8.11.0",
"microtime": "^3.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-mocha": "^9.0.2",
"typescript": "^4.6.2"
},
"mocha": {
"extension": [
"ts"
],
"recursive": true,
"spec": "test/**/*.spec.ts",
"require": "ts-node/register"
},
"types": "dist/asherah.d.ts",
"dependencies": {
"cobhan": "^1.0.37",
"node-addon-api": "*"
}
}