-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
91 lines (91 loc) · 2.56 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
{
"name": "import-js",
"version": "2.0.0",
"description": "Simplifies importing JavaScript modules",
"bin": {
"importjs": "./bin/importjs.js",
"importjsd": "./bin/importjsd.js"
},
"main": "build/Importer.js",
"scripts": {
"benchmark": "node build/benchmark.js 1000",
"build": "babel lib --ignore __tests__,__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",
"importing"
],
"author": "Henric Trotzig",
"contributors": [
{
"name": "Joe Lencioni",
"email": "joe.lencioni@gmail.com",
"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": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-jest": "^14.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"deasync": "^0.1.7",
"eslint": "^3.0.0",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-flowtype": "^2.11.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-react": "^6.1.2",
"flow-bin": "^0.30.0",
"jest-cli": "^17.0.3",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.2"
},
"dependencies": {
"babel-plugin-jsx": "^1.2.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babylon": "^6.14.1",
"commander": "^2.9.0",
"fb-watchman": "^1.9.0",
"glob": "^7.0.3",
"lodash.escaperegexp": "^4.1.1",
"lodash.flattendeep": "^4.1.0",
"lodash.partition": "^4.2.0",
"lodash.sortby": "^4.2.2",
"lodash.uniqby": "^4.2.1",
"loglevel": "^1.4.1",
"loglevel-message-prefix": "^1.1.1",
"minimatch": "^3.0.0",
"semver": "^5.1.0"
},
"jest": {
"automock": false,
"testEnvironment": "node",
"testPathIgnorePatterns": [
".eslintrc.js",
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
}
}