-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 975 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
32
33
34
35
36
37
{
"name": "jazelle",
"version": "0.0.0-standalone.97",
"main": "index.js",
"bin": {
"barn": "bin/bootstrap.sh",
"jazelle": "bin/bootstrap.sh",
"jz": "bin/bootstrap.sh"
},
"dependencies": {
"@rauschma/stringio": "1.4.0",
"semver": "^6.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-prettier": "^3.1.4",
"flow-bin": "0.109.0",
"prettier": "^2.1.2"
},
"license": "MIT",
"scripts": {
"build": "echo ok",
"lint": "eslint .",
"flow-check": "flow check",
"test": "node tests/index.js",
"preupdate-vendor": "mv vendor/.gitignore .vendor-gitignore",
"postupdate-vendor": "mv .vendor-gitignore vendor/.gitignore",
"update-vendor": "yarn install --prod --flat --frozen-lockfile --modules-folder=vendor"
},
"volta": {
"node": "16.15.0",
"yarn": "1.19.1"
}
}