-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 843 Bytes
/
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
{
"name": "fastexcel",
"version": "0.2.1",
"description": "Fast and efficient large excel file writer",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/slaveofcode/fastexcel.git"
},
"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",
"install": "npm run build-release",
"rs:test": "cargo test",
"js:test": "jest --runInBand"
},
"author": "Aditya Kresna Permana",
"license": "MIT",
"devDependencies": {
"cargo-cp-artifact": "^0.1",
"jest": "^29.3.1"
},
"keywords": [
"excel",
"writer",
"streaming",
"office"
],
"homepage": "https://github.com/slaveofcode/fastexcel#readme"
}