-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathpackage.json
29 lines (29 loc) · 949 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
{
"browser": "dist/web/prql_js.js",
"description": "Javascript bindings for prql-compiler",
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0"
},
"files": [
"dist/**/*",
"package.json"
],
"license": "Apache-2.0",
"main": "dist/node/prql_js.js",
"name": "prql-js",
"repository": {
"type": "git",
"url": "https://github.com/PRQL/prql"
},
"scripts": {
"build": "npm run build:node && npm run build:bundler && npm run build:web",
"build:bundler": "wasm-pack build --target bundler --release --out-dir dist/bundler && rm dist/bundler/.gitignore",
"build:node": "wasm-pack build --target nodejs --release --out-dir dist/node && rm dist/node/.gitignore",
"build:web": "wasm-pack build --target no-modules --release --out-dir dist/web && rm dist/web/.gitignore",
"prepare": "npm run build",
"test": "mocha tests"
},
"types": "dist/node/prql_js.d.ts",
"version": "0.8.1"
}