forked from gajus/create-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 968 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
39
{
"name": "create-index",
"description": "Creates ES6 ./index.js file in target directories that imports and exports all sibling files and directories.",
"version": "0.1.3",
"main": "./dist/index.js",
"bin": "./dist/bin/create-index.js",
"repository": {
"type": "git",
"url": "https://github.com/gajus/create-index"
},
"keywords": [
"index",
"import",
"export"
],
"author": {
"name": "Gajus Kuizinas",
"email": "[email protected]",
"url": "http://gajus.com"
},
"license": "BSD-3-Clause",
"scripts": {
"lint": "pragmatist lint",
"test": "pragmatist test --type-assertions",
"build": "pragmatist build --es5",
"create-index": "node ./dist/bin/create-index ./src/utilities"
},
"devDependencies": {
"chai": "^3.5.0",
"pragmatist": "^3.0.21"
},
"dependencies": {
"glob": "^7.0.3",
"lodash": "^4.9.0",
"yargs": "^4.5.0",
"chalk": "^1.1.3",
"moment": "^2.12.0"
}
}