-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1023 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
41
42
43
44
45
46
47
48
49
{
"name": "@saulx/validators",
"main": "./dist/index.js",
"version": "1.2.1",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "ava --verbose"
},
"repository": "https://github.com/atelier-saulx/validators",
"lint-staged": {
"{js,json}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"ava": {
"files": [
"test/**/*.ts",
"!test/examples"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"browser": {
"stream": false
},
"prettier": "@saulx/prettier-config",
"eslintConfig": {
"extends": "@saulx/eslint-config"
},
"devDependencies": {
"@saulx/eslint-config": "https://github.com/atelier-saulx/eslint-config",
"@saulx/prettier-config": "https://github.com/atelier-saulx/prettier-config",
"ava": "2.4.0",
"husky": "^3.0.8",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
}
}