|
1 | 1 | {
|
2 |
| - "name": "@kilix/functional-validation", |
3 |
| - "version": "1.3.1", |
4 |
| - "description": "Lightweight and customisable validation, built through composition", |
5 |
| - "main": "lib/index.js", |
6 |
| - "scripts": { |
7 |
| - "prebuild": "rimraf lib/", |
8 |
| - "build": "npm-run-all --parallel build:*", |
9 |
| - "build:main": "babel src --out-dir lib --ignore '**/__tests__/**'", |
10 |
| - "build:umd": "webpack --output-filename index.umd.js -p", |
11 |
| - "flow": "flow check", |
12 |
| - "test": "jest --watch", |
13 |
| - "test:ci": "jest --coverage && codecov", |
14 |
| - "lint": "eslint ./src", |
15 |
| - "precommit": "lint-staged", |
16 |
| - "prepublish": "npm run build", |
17 |
| - "format": "prettier --trailing-comma all --single-quote --tab-width 4 --print-width 100 --write 'src/**/*.js'" |
18 |
| - }, |
19 |
| - "repository": { |
20 |
| - "type": "git", |
21 |
| - "url": "git+https://github.com/kilix/functional-validation.git" |
22 |
| - }, |
23 |
| - "keywords": [], |
24 |
| - "files": [ |
25 |
| - "lib" |
26 |
| - ], |
27 |
| - |
28 |
| - "license": "MIT", |
29 |
| - "devDependencies": { |
30 |
| - "babel-cli": "^6.23.0", |
31 |
| - "babel-core": "^6.23.1", |
32 |
| - "babel-eslint": "^7.2.0", |
33 |
| - "babel-loader": "^6.3.2", |
34 |
| - "babel-plugin-transform-flow-strip-types": "^6.22.0", |
35 |
| - "babel-plugin-transform-object-rest-spread": "^6.23.0", |
36 |
| - "babel-preset-env": "^1.1.8", |
37 |
| - "codecov": "^1.0.1", |
38 |
| - "cross-env": "^3.1.4", |
39 |
| - "eslint": "^3.16.1", |
40 |
| - "eslint-config-airbnb": "^14.1.0", |
41 |
| - "eslint-plugin-import": "^2.2.0", |
42 |
| - "eslint-plugin-jsx-a11y": "^4.0.0", |
43 |
| - "eslint-plugin-react": "^6.10.0", |
44 |
| - "flow-bin": "^0.42.0", |
45 |
| - "husky": "^0.13.2", |
46 |
| - "jest": "^19.0.1", |
47 |
| - "lint-staged": "^3.3.1", |
48 |
| - "npm-run-all": "^4.0.2", |
49 |
| - "prettier": "^0.21.0", |
50 |
| - "rimraf": "^2.6.1", |
51 |
| - "webpack": "^2.2.1" |
52 |
| - }, |
53 |
| - "dependencies": { |
54 |
| - "ramda": "^0.23.0" |
55 |
| - }, |
56 |
| - "peerDependencies": {}, |
57 |
| - "lint-staged": { |
58 |
| - "*.js": [ |
59 |
| - "prettier --trailing-comma all --single-quote --tab-width 4 --print-width 100 --write", |
60 |
| - "git add" |
61 |
| - ] |
62 |
| - } |
| 2 | + "name": "@kilix/functional-validation", |
| 3 | + "version": "1.3.1", |
| 4 | + "description": "Lightweight and customisable validation, built through composition", |
| 5 | + "main": "lib/index.js", |
| 6 | + "scripts": { |
| 7 | + "prebuild": "rimraf lib/", |
| 8 | + "build": "npm-run-all --parallel build:*", |
| 9 | + "build:main": "babel src --out-dir lib --ignore '**/__tests__/**'", |
| 10 | + "build:umd": "webpack --output-filename index.umd.js -p", |
| 11 | + "build:flow": "babel-flow src --out-dir lib", |
| 12 | + "flow": "flow check", |
| 13 | + "test": "jest --watch", |
| 14 | + "test:ci": "jest --coverage && codecov", |
| 15 | + "lint": "eslint ./src", |
| 16 | + "precommit": "lint-staged", |
| 17 | + "prepublishOnly": "npm run build", |
| 18 | + "format": "prettier --trailing-comma all --single-quote --tab-width 4 --print-width 100 --write 'src/**/*.js'" |
| 19 | + }, |
| 20 | + "repository": { |
| 21 | + "type": "git", |
| 22 | + "url": "git+https://github.com/kilix/functional-validation.git" |
| 23 | + }, |
| 24 | + "keywords": [], |
| 25 | + "files": ["lib"], |
| 26 | + "jest": { |
| 27 | + "testPathIgnorePatterns": ["<rootDir>/src/__tests__/typingTests.js"] |
| 28 | + }, |
| 29 | + |
| 30 | + "license": "MIT", |
| 31 | + "devDependencies": { |
| 32 | + "babel-cli": "^6.23.0", |
| 33 | + "babel-cli-flow": "^1.0.0", |
| 34 | + "babel-core": "^6.23.1", |
| 35 | + "babel-eslint": "^7.2.0", |
| 36 | + "babel-loader": "^6.3.2", |
| 37 | + "babel-plugin-transform-flow-strip-types": "^6.22.0", |
| 38 | + "babel-plugin-transform-object-rest-spread": "^6.23.0", |
| 39 | + "babel-preset-env": "^1.1.8", |
| 40 | + "codecov": "^2.3.0", |
| 41 | + "cross-env": "^5.0.5", |
| 42 | + "eslint": "^4.4.1", |
| 43 | + "eslint-config-airbnb": "^15.1.0", |
| 44 | + "eslint-plugin-flowtype": "^2.35.0", |
| 45 | + "eslint-plugin-import": "2.7", |
| 46 | + "eslint-plugin-jsx-a11y": "5.1.1", |
| 47 | + "flow-bin": "^0.52.0", |
| 48 | + "husky": "^0.14.3", |
| 49 | + "jest": "^20.0.4", |
| 50 | + "lint-staged": "^4.0.3", |
| 51 | + "npm-run-all": "^4.0.2", |
| 52 | + "prettier": "^1.5.3", |
| 53 | + "rimraf": "^2.6.1", |
| 54 | + "webpack": "^2.2.1" |
| 55 | + }, |
| 56 | + "dependencies": { |
| 57 | + "eslint-plugin-react": "7.2", |
| 58 | + "ramda": "^0.23.0" |
| 59 | + }, |
| 60 | + "peerDependencies": {}, |
| 61 | + "lint-staged": { |
| 62 | + "*.js": [ |
| 63 | + "prettier --trailing-comma all --single-quote --tab-width 4 --print-width 100 --write", |
| 64 | + "git add" |
| 65 | + ] |
| 66 | + } |
63 | 67 | }
|
0 commit comments