-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "margin-protection",
"version": "1.0.0",
"description": "Suite of product solutions to catch common errors in real time.",
"main": "index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "yarn --cwd ./ts test",
"lint": "eslint -c eslint.config.js",
"prepare": "husky",
"check-deps": "(yarn clasp --help && yarn mocha --help && yarn eslint --help && yarn prettier --help && yarn lint-staged --help) > /dev/null"
},
"author": "Sean Capaloff-Jones <[email protected]>",
"license": "MIT",
"repository": "[email protected]:google-marketing-solutions/margin-protection",
"private": true,
"devDependencies": {
"@google/clasp": "^2.4.2",
"@types/eslint-config-prettier": "^6.11.3",
"chai": "^5.1.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-mocha": "^10.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"dependencies": {
"tsx": "^4.19.2"
}
}