-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
78 lines (78 loc) · 2.02 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
{
"name": "babel-plugin-transform-react-qa-classes",
"version": "1.6.0",
"license": "MIT",
"description": "Add component's name in `data-qa` attributes to React Components Edit",
"repository": {
"type": "git",
"url": "git+https://github.com/davesnx/babel-plugin-transform-react-qa-classes.git"
},
"author": "davesnx <[email protected]>",
"keywords": [
"babel",
"plugin",
"react",
"component",
"qa-classes"
],
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"test:watch": "yarn test -- --watch",
"lint": "eslint .",
"prepublishOnly": "yarn clean && yarn build",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"babel-types": "^6.26.0",
"lodash.camelcase": "^4.3.0",
"lodash.isstring": "^4.0.1",
"lodash.kebabcase": "^4.1.1",
"lodash.snakecase": "^4.1.1",
"pascalcase": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.3.4",
"babel-cli": "6.24.1",
"babel-helper-plugin-test-runner": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint-config-davesnx-rules": "^1.0.0",
"husky": "^1.1.2",
"mocha": "^3.1.2",
"semantic-release": "^15.10.3",
"travis-deploy-once": "^5.0.9"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm"
]
}
}