-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 903 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 903 Bytes
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
{
"name": "finch",
"version": "0.0.1",
"description": "A template engine for node.js",
"main": "index.node",
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics --release",
"build-debug": "npm run build --",
"build-release": "npm run build --",
"install": "npm run build-release",
"benchmark": "node ./benchmarks/index.js",
"benchmark_raw": "node ./benchmarks/raw.js",
"test": "cargo test"
},
"author": "GoogleFeud",
"license": "MIT",
"devDependencies": {
"cargo-cp-artifact": "^0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-docs/finch.git"
},
"keywords": [
"template",
"engine",
"node",
"handlebars"
],
"bugs": {
"url": "https://github.com/ts-docs/finch/issues"
},
"homepage": "https://github.com/ts-docs/finch#readme"
}