-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "react-app-rewire-external-svg-loader",
"description": "Enables external-svg-loader for CRA apps using react-app-rewired",
"version": "1.1.0",
"keywords": [
"react",
"create-react-app",
"svg",
"loader",
"external-svg-loader"
],
"author": "André Cruz <andre@moxy.studio>",
"homepage": "https://github.com/moxystudio/react-app-rewire-external-svg-loader",
"repository": {
"type": "git",
"url": "git@github.com:moxystudio/react-app-rewire-external-svg-loader.git"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "jest --env node --coverage",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"lint-staged": {
"*.js": [
"eslint --fix --ignore-pattern test/fixtures",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"external-svg-sprite-loader": "^3.4.1",
"lodash.merge": "^4.6.1",
"svg-css-modules-loader": "^1.6.1"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"eslint": "^5.3.0",
"eslint-config-moxy": "^6.0.1",
"husky": "^0.14.0",
"jest": "^24.5.0",
"jest-serializer-path": "^0.1.15",
"lint-staged": "^7.2.0",
"lodash.clonedeep": "^4.5.0",
"standard-version": "^4.4.0",
"webpack": "^3.12.0"
}
}