-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.12 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
50
51
52
53
{
"name": "@saulx/crypto",
"version": "1.0.0",
"sideEffects": false,
"scripts": {
"build": "npx tsc",
"watch": "npx tsc --watch",
"test": "ava --color --only --timeout 1m --verbose"
},
"repository": "https://github.com/atelier-saulx/crypto",
"main": "dist/index.js",
"lint-staged": {
"{js,json}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"ava": {
"files": [
"test/**/*.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"browser": {
"stream": false
},
"prettier": "@saulx/prettier-config",
"eslintConfig": {
"extends": "@saulx/eslint-config"
},
"dependencies": {},
"devDependencies": {
"prettier": "^2.2.1",
"husky": "^3.0.8",
"lint-staged": "^9.4.2",
"@saulx/eslint-config": "https://github.com/atelier-saulx/eslint-config",
"@saulx/prettier-config": "https://github.com/atelier-saulx/prettier-config",
"eslint": "^7.18.0",
"@types/node": "18.11.15",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"ava": "3"
}
}