-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "rustdom",
"version": "0.3.1",
"description": "Rust based DOM manipulation library for Node.js",
"repository": {
"type": "git",
"url": "git://github.com/dengelke/rustdom.git"
},
"keywords": [
"neon",
"rust",
"html5ever"
],
"main": "index.js",
"author": "Daniel Engelke <[email protected]>",
"license": "MIT",
"devDependencies": {
"c8": "^7.11.3",
"chai": "^1.10.0",
"concurrently": "^7.2.1",
"mocha": "^10.0.0"
},
"dependencies": {
"cargo-cp-artifact": "^0.1"
},
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"coverage": "c8 npm test",
"install": "npm run build-release",
"report": "c8 -r html report",
"test": "npx mocha test",
"watch-rs": "cargo watch --quiet -i index.js -i test -i lib -- cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"watch-js": "cargo watch --no-gitignore --postpone -i src -w index.node -w index.js -w test -w lib -- npm run test",
"watch": "concurrently \"npm:watch-*\""
}
}