-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "typology",
"version": "1.3.0",
"description": "A data validation library for Node.js and the browser.",
"main": "typology.js",
"files": [
"typology.js",
"typology.d.ts"
],
"scripts": {
"test": "mocha -r ts-node/register test/unit.test.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "[email protected]:jacomyal/typology.git"
},
"keywords": [
"data",
"validation"
],
"authors": [
"Yomguithereal",
"jacomyal",
"jlesceau"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jacomyal/typology/issues"
},
"homepage": "https://github.com/jacomyal/typology",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"husky": "^3.0.9",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}