-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.41 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
54
55
56
57
58
59
60
61
{
"version": "6.1.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"setup": "yarn install",
"start": "tsdx watch",
"build": "tsdx build -i src/index.ts",
"typedoc": "typedoc --out docs src && touch docs/.nojekyll",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build -i src/index.ts",
"coveralls": "jest --coverage --no-watch && cat ./coverage/lcov.info | coveralls"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"keywords": [
"decoder",
"elm",
"typescript",
"validation",
"decoders",
"parsing",
"type check"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "elm-decoders",
"author": "Marc Coquand",
"module": "dist/decoders.esm.js",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"fast-check": "^1.21.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"tsdx": "^0.13.2",
"tslib": "^1.10.0",
"typedoc": "^0.17.6",
"typescript": "^3.9.3"
}
}