-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 980 Bytes
/
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
{
"name": "auto-import",
"version": "0.1.4",
"description": "create index files that auto-import ES6 modules",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly",
"cover": "istanbul cover node_modules/mocha/bin/_mocha &> /dev/null && istanbul report text && rm -r ./coverage",
"md": "pm2 start pen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codekirei/auto-import.git"
},
"keywords": [
"automatic",
"ES6",
"modules",
"import"
],
"author": "Jacob Blakely (codekirei)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codekirei/auto-import/issues"
},
"homepage": "https://github.com/codekirei/auto-import#readme",
"dependencies": {
"globby": "4.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"istanbul": "0.4.3",
"mocha": "2.4.5",
"mock-fs": "3.8.0",
"sinon": "1.17.3"
}
}