-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1010 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
38
39
40
{
"name": "@rwx-research/abq",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/rwx-research/abq-js.git"
},
"license": "ISC",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc",
"format": "eslint --fix --ext .js,.ts src",
"lint:check": "eslint --ext .js,.ts src",
"jest": "jest",
"test": "npm run build && npm run lint:check && npm run jest",
"prepack": "npm run build",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.15",
"babel-jest": "^29.3.1",
"eslint-config-standard-with-typescript": "^24.0.0",
"jest": "^29.5.0",
"ts-standard": "^12.0.1",
"typescript": "^4.9.4"
},
"files": [
"build/*.js",
"build/*.d.ts",
"README.md"
],
"publishConfig": {
"access": "public"
}
}