-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.36 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
{
"name": "@kilix/functional-validation",
"version": "2.5.1",
"description": "Lightweight and customisable validation, built through composition",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf lib/",
"build:flow": "mkdir lib && cd src && for file in *.js; do cp $file ../lib/${file}.flow; done",
"build": "yarn build:flow && yarn build:main && yarn build:umd",
"build:umd": "webpack --output-filename index.umd.js -p",
"build:main": "babel src --out-dir lib --ignore '**/__tests__/**'",
"flow": "flow",
"test": "jest --watch",
"test:ci": "jest --coverage && codecov",
"lint": "eslint ./src",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"format": "prettier --trailing-comma all --single-quote --tab-width 4 --print-width 100 --write 'src/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kilix/functional-validation.git"
},
"keywords": [],
"files": [
"lib"
],
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/typingTests.js"
]
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5 |",
"@babel/core": "^7.5.5 |",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"codecov": "^3.7.1",
"cross-env": "^5.0.5",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "2.7",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.2",
"flow-bin": "0.103.0",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^4.0.3",
"npm-run-all": "^4.0.2",
"prettier": "^1.6.1",
"rimraf": "^2.6.1",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"ramda": "^0.27.0"
},
"peerDependencies": {},
"lint-staged": {
"*.js": [
"prettier --trailing-comma all --single-quote --tab-width 4 --print-width 100 --write",
"git add"
]
}
}