-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "@stoqey/aurum-broker-spec",
"description": "API Spec for implementing any broker with AURUM",
"version": "0.0.8",
"private": false,
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node build/index.js",
"build": "rm -rf build && tsc",
"test": "NODE_ENV=test mocha src/*test.ts --exit",
"eslint": "eslint src --fix --ext=ts",
"local": "yarn build && yarn link",
"prepare": "yarn build",
"prepublishOnly": "yarn build && yarn test"
},
"lint-staged": {
"./src/**/*.ts": [
"yarn eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"ts-node": "^8.8.1",
"typescript": "^3.5.2"
},
"author": "Stoqey Inc <support@stoqey.com>",
"license": "MIT"
}