This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.73 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
{
"name": "validators",
"version": "2.3.5",
"description": "Module with set of validators",
"main": "lib/index.js",
"repository": "github:HealthByRo/validators",
"keywords": [
"validators",
"validation"
],
"author": "Arabella Front-End Team",
"license": "ISC",
"homepage": "https://github.com/HealthByRo/validators/",
"scripts": {
"prebuild": "npm run lint && npm run test",
"build": "rm -rf lib && babel -d lib/ src/ --ignore \"**/*.test.js\"",
"test": "jest --coverage --config=.jest.json",
"test:watch": "./node_modules/.bin/jest --watchAll --silent --config=.jest.json ./src",
"test:badge": "yarn run test && node ./scripts/coverage.js",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern lib/",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"prerelease": "git checkout master && git pull && git checkout develop && git pull",
"release": "npm version",
"postrelease": "git push && git push --tags && git checkout master && git pull && git merge develop && git push && git checkout develop"
},
"lint-staged": {
"*.js": "lint:eslint"
},
"pre-commit": "lint:staged",
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^20.0.4",
"lcov2badge": "^0.1.0"
}
}