-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
{
"name": "@killara/validation",
"version": "2.2.4",
"description": "",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"lint": "eslint test lib index.js",
"fix": "npm run lint -- --fix",
"test": "npm run lint && jest --forceExit",
"test-cov": "npm run test -- --coverage"
},
"files": [
"lib",
"index.d.ts",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/killara/validation.git"
},
"keywords": [],
"author": "Runrioter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/killara/validation/issues"
},
"homepage": "https://github.com/killara/validation#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-egg": "^7.0.0",
"eslint-plugin-jest": "^21.15.1",
"jest": "^22.4.3"
},
"jest": {
"coverageReporters": [
"text-summary",
"lcov"
],
"bail": true,
"testEnvironment": "node"
},
"dependencies": {
"@killara/is": "^1.1.3",
"txl": "^1.0.0"
}
}