-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "parse-static-imports",
"description": "Gracefully parse ECMAScript static imports 💃",
"version": "1.1.0",
"author": "Cody A Price <[email protected]>",
"bugs": {
"url": "https://github.com/dev-cprice/parse-static-imports/issues"
},
"keywords": [
"parse",
"ecmascript",
"imports",
"javascript",
"js"
],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dev-cprice/parse-static-imports.git"
},
"scripts": {
"build": "babel src -d dist",
"prebuild": "rm -rf dist",
"lint": "eslint . --ext js",
"test": "jest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.9.0",
"prettier": "^1.18.2"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/"
]
}
}