-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "valerie",
"version": "0.8.0",
"description": "Simple JS object validator",
"main": "lib",
"engines": {
"node": "^5.11.0"
},
"scripts": {
"build": "rm -rf lib && npm run lint && babel src --out-dir lib",
"lint": "eslint src test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/developerdizzle/valerie.git"
},
"keywords": [
"javascript",
"validation",
"json",
"object",
"schema"
],
"author": "developerdizzle",
"license": "MIT",
"bugs": {
"url": "https://github.com/developerdizzle/valerie/issues"
},
"homepage": "https://github.com/developerdizzle/valerie",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.4",
"babel-jest": "^12.0.2",
"babel-plugin-import-glob": "^1.0.1",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-3": "^6.5.0",
"eslint": "^2.9.0",
"eslint-config-standard": "^5.2.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"jest-cli": "^12.0.2"
},
"jest": {
"testDirectoryName": "tests",
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/\\..*/"
],
"unmockedModulePathPatterns": [
"src",
"lib"
]
}
}