-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.53 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
{
"name": "scaffold-helper",
"version": "1.2.0",
"description": "Helps with generating files and file structures",
"main": "./dest/index.js",
"scripts": {
"pretest": "npm run lint & npm run babel",
"test": "nyc ava",
"lint": "eslint lib test",
"build": "npm run babel",
"babel": "babel lib -d dest",
"prepublish": "npm run babel",
"prepush": "npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"test",
"dest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cliffpyles/scaffold-helper.git"
},
"author": "Cliff Pyles",
"license": "MIT",
"bugs": {
"url": "https://github.com/cliffpyles/scaffold-helper/issues"
},
"keywords": [
"recursive",
"file",
"directoy",
"copy",
"template",
"template-file",
"scaffold-helper"
],
"homepage": "https://github.com/cliffpyles/scaffold-helper#readme",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.1",
"coveralls": "^3.0.2",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"fs-extra": "^4.0.2",
"husky": "^0.13.2",
"nyc": "^13.1.0"
},
"dependencies": {
"dot-prop": "^4.2.0",
"path-is-absolute": "^1.0.1"
}
}