-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.88 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "drip-form-validator",
"version": "0.0.7",
"description": "Simple and Powerful and Customizable validation library for JavaScript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prebuild": "rimraf lib",
"watch": "npm run build -- -w & npm run test:unit -- --watch",
"test": "npm run test:lint && npm run test:unit",
"test:watch": "npm run test:unit -- --watch",
"test:lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"test:unit": "jest",
"test:coverage": "npm run test:unit -- --coverage",
"codecov": "npm run test:coverage && codecov",
"docs": "npm run docs:clean && npm run docs:build",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build && npm run docs:api",
"docs:api": "typedoc --excludeExternals --excludePrivate --exclude '**/+(rules|normalizers|locale)/**/*.ts' --out _book/api/ src/",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs && gh-pages -t -d _book",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsuyoshiwada/drip-form-validator.git"
},
"keywords": [
"form",
"form-validation",
"form-normalize",
"validation",
"normalize",
"drip-form"
],
"author": "tsuyoshiwada",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsuyoshiwada/drip-form-validator/issues"
},
"homepage": "https://github.com/tsuyoshiwada/drip-form-validator#readme",
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/node": "^8.0.26",
"@types/sinon": "^2.3.3",
"codecov": "^2.3.0",
"gh-pages": "^1.0.0",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-advanced-emoji": "^0.2.2",
"gitbook-plugin-github": "^3.0.0",
"gitbook-plugin-hide-published-with": "^1.0.3",
"gitbook-plugin-prism": "^2.3.0",
"glob": "^7.1.2",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"sinon": "^3.2.1",
"tslint": "^5.7.0",
"typedoc": "^0.8.0",
"typescript": "^2.4.2"
},
"dependencies": {
"@types/invariant": "^2.2.29",
"@types/lodash.foreach": "^4.5.3",
"@types/lodash.isempty": "^4.4.3",
"@types/lodash.isequal": "^4.5.2",
"@types/lodash.isplainobject": "^4.0.3",
"@types/lodash.map": "^4.6.12",
"@types/validator": "^6.2.2",
"date-fns": "^1.28.5",
"dot-wild": "^2.2.5",
"invariant": "^2.2.2",
"lodash.foreach": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isplainobject": "^4.0.6",
"lodash.map": "^4.6.0",
"validator": "^8.1.0"
},
"files": [
"lib"
],
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.spec.(ts|tsx|js)"
]
}
}