forked from CSML-by-Clevy/csml-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
16 lines (16 loc) · 960 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "csml_engine_node",
"version": "1.11.0",
"main": "index.node",
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --features=csml_engine/mongo,csml_engine/dynamo,csml_engine/sqlite,csml_engine/postgresql --message-format=json-render-diagnostics",
"build:dynamodb": "cargo-cp-artifact -nc index.node -- cargo build --features=csml_engine/dynamo --message-format=json-render-diagnostics",
"build:mongodb": "cargo-cp-artifact -nc index.node -- cargo build --features=csml_engine/mongo --message-format=json-render-diagnostics",
"build:postgresql": "cargo-cp-artifact -nc index.node -- cargo build --features=csml_engine/postgresql --message-format=json-render-diagnostics",
"build:sqlite": "cargo-cp-artifact -nc index.node -- cargo build --features=csml_engine/sqlite --message-format=json-render-diagnostics",
"test": "cargo test"
},
"devDependencies": {
"cargo-cp-artifact": "^0.1.6"
}
}