forked from Galooshi/import-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.67 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "import-js",
"version": "4.0.2",
"description": "Simplifies importing JavaScript modules",
"bin": {
"importjs": "./bin/importjs.js",
"importjsd": "./bin/importjsd.js"
},
"main": "build/main.js",
"scripts": {
"build": "babel lib --ignore ./lib/__tests__,./lib/__mocks__ --out-dir build",
"clean": "rimraf build",
"flow": "flow",
"jest": "jest",
"jest:cover": "jest --coverage",
"lint": "eslint .",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run build && npm test",
"test": "npm run --silent lint && npm run --silent flow && npm run --silent jest",
"test:cover": "npm run --silent lint && npm run --silent flow && npm run --silent jest:cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/galooshi/import-js.git"
},
"keywords": [
"es6",
"commonjs",
"es2015",
"ts",
"typescript",
"importing"
],
"author": "Henric Trotzig",
"contributors": [
{
"name": "Joe Lencioni",
"email": "[email protected]",
"url": "https://twitter.com/lencioni"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/galooshi/import-js/issues"
},
"homepage": "https://github.com/galooshi/import-js#readme",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-flow": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.19.0",
"eslint-plugin-react": "^7.17.0",
"flow-bin": "^0.113.0",
"jest": "^24.9.0",
"mkdirp": "^0.5.1",
"rimraf": "^3.0.0"
},
"dependencies": {
"@babel/core": "^7.7.5",
"@babel/parser": "^7.7.5",
"@babel/plugin-syntax-flow": "^7.7.4",
"@babel/plugin-syntax-jsx": "^7.7.4",
"@babel/plugin-syntax-typescript": "^7.7.4",
"@babel/runtime": "^7.7.6",
"commander": "^4.0.1",
"fb-watchman": "^2.0.1",
"glob": "^7.1.6",
"globals": "^12.3.0",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"require-relative": "^0.8.7",
"semver": "^6.3.0",
"sqlite3": "^4.1.1",
"winston": "^3.2.1"
},
"jest": {
"automock": false,
"testEnvironment": "node",
"setupFiles": [
"./setupJest.js"
],
"testPathIgnorePatterns": [
".eslintrc.js",
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
}
}