-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.91 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "spicery",
"version": "2.1.2",
"description": "Runtime type safety for JSON/untyped data.",
"author": "Manuel Alabor <manuel@alabor.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/swissmanu/spicery/issues"
},
"homepage": "https://github.com/swissmanu/spicery#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"prepare": "husky install",
"test": "jest",
"test:watch": "yarn test --watch",
"lint": "yarn lint:selective src",
"lint:selective": "eslint",
"pretty": "prettier --write",
"build": "tsc",
"docs": "typedoc --out docs/ ./src && touch docs/.nojekyll",
"example:simple": "ts-node examples/simple.ts",
"example:complex": "ts-node examples/complex.ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/swissmanu/spicery.git"
},
"keywords": [
"typescript",
"json",
"parser",
"typesafety",
"api"
],
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "12.0.4",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.30.0",
"husky": "7.0.1",
"jest": "27.0.6",
"lint-staged": "11.0.0",
"prettier": "2.3.2",
"semantic-release": "17.4.4",
"ts-jest": "27.0.3",
"ts-node": "10.0.0",
"typedoc": "0.21.2",
"typescript": "4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/test/**/*.ts"
]
},
"prettier": {
"printWidth": 120
},
"lint-staged": {
"*.ts": [
"yarn pretty",
"yarn lint:selective"
],
"*.{js,json}": [
"yarn pretty"
]
}
}