-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.56 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.56 KB
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
{
"name": "wasm-template",
"version": "1.0.1",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "npm run build && node dist/src/index.js",
"dev": "npm run build && nodemon",
"test": "mocha -r ts-node/register test/**/*.ts",
"cov": "nyc npm run test",
"cov:html": "nyc --reporter=lcov --reporter=text-summary npm run test",
"build": "npm run clean && tsc && ./scripts/build.sh",
"clean": "rimraf ./build && rimraf ./dist",
"docker": "./scripts/createDocker.sh $npm_package_name:$npm_package_version",
"docker:build": "./scripts/createDocker.sh $npm_package_name:$npm_package_version",
"docker:start": "./scripts/runDocker.sh $npm_package_name:$npm_package_version",
"docker:test": "./scripts/testDocker.sh $npm_package_name-test:$npm_package_version && ./scripts/runTestDocker.sh $npm_package_name-test:$npm_package_version",
"doc": "typedoc -plugin typedoc-plugin-param-names --excludePrivate --excludeInternal ./src/* --out doc",
"doc:internal": "typedoc -plugin typedoc-plugin-param-names --excludeInternal false ./src/* --out internal"
},
"keywords": [
"template"
],
"author": "BHC-IT",
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"dotenv": "^8.2.0",
"node-addon-api": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"chai": "^4.3.4",
"concurrently": "^6.0.2",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typedoc": "^3.6.4",
"typescript": "^4.2.4",
"typings": "^2.1.1"
}
}