-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.44 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
{
"name": "commodo-fields-int",
"version": "0.0.0-development",
"description": "A simple integer field, used with the Commodo \"withFields\" higher order function.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/doitadrian/commodo-fields-int.git"
},
"author": "Adrian Smijulj",
"license": "MIT",
"bugs": {
"url": "https://github.com/doitadrian/commodo-fields-int/issues"
},
"keywords": [
"commodo",
"fields",
"int"
],
"homepage": "https://github.com/doitadrian/commodo-fields-int#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"all-contributors-cli": "^5.6.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"concurrently": "^4.1.0",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.11.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-dom": "^3.0.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"ramda": "^0.26.1",
"semantic-release": "^17.0.2",
"wait-on": "^3.2.0"
},
"dependencies": {
"@commodo/fields": "^1.0.0",
"repropose": "^1.0.2"
},
"scripts": {
"cz": "git-cz",
"build": "babel src --out-dir dist --source-maps --ignore **/*.test.js",
"test": "npm run test:jest:src",
"test:jest:src": "npx jest --config ./scripts/jest/config.src.js",
"test:jest:src:coverage": "npx jest --config ./scripts/jest/config.src.js --coverage --collectCoverageFrom=src/**/*.js",
"test:jest:src:coverage:coveralls": "npm run test:jest:src:coverage && cat ./coverage/lcov.info | coveralls",
"test:jest:dist": "npm run build && jest --config ./scripts/jest/config.dist.js --colors",
"release": "npx semantic-release",
"lint-staged": "lint-staged",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"semantic-release": "semantic-release"
},
"pre-commit": [
"lint-staged"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix",
"jest --config ./scripts/jest/config.src.js --findRelatedTests",
"git add"
]
}
}