-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "shapeit",
"version": "0.10.0",
"description": "Object validation tools for Javascript and, specially, Typescript",
"main": "shapeit.umd.js",
"module": "shapeit.es.mjs",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./shapeit.es.mjs",
"require": "./shapeit.umd.js"
}
},
"scripts": {
"release": "node scripts/release.js",
"build": "node scripts/build.js",
"test": "jest --verbose",
"lint": "eslint .",
"test:watch": "jest --watch --no-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegood12/shapeit.git"
},
"keywords": [
"typeguards",
"validation",
"typesafety",
"form validation"
],
"author": "Diego Fidalgo",
"license": "MIT",
"bugs": {
"url": "https://github.com/diegood12/shapeit/issues"
},
"homepage": "https://github.com/diegood12/shapeit#readme",
"devDependencies": {
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@types/lodash.isequal": "^4.5.5",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"compare-versions": "^4.1.2",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-lodash": "^7.3.0",
"faker": "^5.5.3",
"jest": "^27.4.5",
"lodash": "^4.17.21",
"lodash.isequal": "^4.5.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"vite": "^2.7.3"
}
}