-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (40 loc) · 1.26 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
{
"name": "cas-typescript-sdk",
"version": "1.0.26",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "cargo test && npm run build && mocha -r ts-node/register ./test-ts/**/*.ts --timeout 20000 --recursive",
"node:test": "mocha -r ts-node/register ./test-ts/**/*.ts --timeout 20000 --recursive",
"rust:test": "cargo test",
"build": "npm run build:rust && rm -rf lib && tsc",
"build:rust": "napi build --release",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cryptographic-API-Services/cas-typescript-sdk"
},
"keywords": [],
"author": "Mike Mulchrone <[email protected]>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/Cryptographic-API-Services/cas-typescript-sdk/issues"
},
"homepage": "https://github.com/Cryptographic-API-Services/cas-typescript-sdk#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@napi-rs/cli": "^2.17.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node-fetch": "^2.6.3",
"chai": "^4.4.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}