-
Notifications
You must be signed in to change notification settings - Fork 252
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@noir-lang/acvm_js",
"version": "1.0.0-beta.0",
"publishConfig": {
"access": "public"
},
"contributors": [
"The Noir Team <team@noir-lang.org>"
],
"homepage": "https://noir-lang.org/",
"repository": {
"url": "https://github.com/noir-lang/noir.git",
"directory": "acvm_repo/acvm_js",
"type": "git"
},
"bugs": {
"url": "https://github.com/noir-lang/noir/issues"
},
"license": "MIT",
"main": "./nodejs/acvm_js.js",
"types": "./web/acvm_js.d.ts",
"module": "./web/acvm_js.js",
"files": [
"nodejs",
"web",
"package.json"
],
"sideEffects": false,
"packageManager": "yarn@3.5.1",
"scripts": {
"build": "bash ./build.sh",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha",
"test:browser": "web-test-runner",
"lint": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ./.eslintignore --max-warnings 0",
"publish": "echo 📡 publishing `$npm_package_name` && yarn npm publish",
"nightly:version": "jq --arg new_version \"-$(git rev-parse --short HEAD)$1\" '.version = .version + $new_version' package.json > package-tmp.json && mv package-tmp.json package.json",
"clean": "chmod u+w web nodejs || true && rm -rf web nodejs"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@web/dev-server-esbuild": "^0.3.6",
"@web/test-runner": "^0.18.1",
"@web/test-runner-playwright": "^0.11.0",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.2.0",
"prettier": "3.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.4.2"
}
}