-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
91 lines (91 loc) · 3.06 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
{
"name": "revalidate",
"version": "1.2.0",
"description": "Elegant and composable validations",
"main": "lib/index.js",
"files": [
"src",
"lib",
"assertions.js",
"immutable.js"
],
"scripts": {
"build": "babel src --out-dir lib",
"check": "npm run lint && npm run typecheck && npm test",
"clean": "rimraf lib",
"lint": "eslint src __tests__",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"typecheck": "flow",
"watch:test": "jest --watch",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:jfairbank/revalidate gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfairbank/revalidate.git"
},
"keywords": [
"functional",
"validation",
"validate",
"form"
],
"author": "Jeremy Fairbank <[email protected]> (http://jeremyfairbank.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jfairbank/revalidate/issues"
},
"homepage": "https://github.com/jfairbank/revalidate#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^17.0.0",
"babel-plugin-check-es2015-constants": "^6.8.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.9.0",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.9.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.8.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.20.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-register": "^6.11.6",
"babel-runtime": "^6.11.6",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-import-resolver-node": "^0.2.0",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-import": "^2.1.0",
"flow-bin": "^0.36.0",
"gitbook-cli": "^2.3.0",
"immutable": "^3.8.1",
"jest": "^17.0.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"lodash": "^4.15.0",
"object-assign": "^4.1.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"testRegex": "__tests__/.*\\.test\\.js$"
}
}