forked from faceyspacey/babel-plugin-universal-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.15 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
{
"name": "babel-plugin-universal-import",
"version": "0.0.0-development",
"description": "Babel plugin to transform import() into its Universal counterpart",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/zackkirsh/babel-plugin-universal-import.git"
},
"bugs": {
"url": "https://github.com/zackkirsh/babel-plugin-universal-import/issues"
},
"homepage": "https://github.com/zackkirsh/babel-plugin-universal-import#readme",
"author": "Zack Jackson [email protected], James Gillmore [email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint --fix ./",
"format": "prettier --single-quote --parser=flow --semi=false --write '{src,__tests__,__test-helpers__}/**/*.js' && npm run lint",
"precommit": "lint-staged && npm test",
"cm": "git-cz"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.32",
"@babel/core": "^7.0.0-beta.32",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.32",
"@babel/preset-es2015": "^7.0.0-beta.32",
"@babel/preset-react": "^7.0.0-beta.32",
"@babel/preset-stage-2": "^7.0.0-beta.32",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-plugin-tester": "^5.0.0",
"babylon-options": "^1.1.2",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.14.1",
"jest": "^21.2.1",
"lint-staged": "^5.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.6",
"travis-github-status": "^1.6.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --single-quote --parser=flow --semi=false --write",
"eslint --fix",
"git add"
]
},
"verbose": true
},
"dependencies": {
"@babel/helper-module-imports": "^7.0.0-beta.32"
}
}