-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "copy-template-dir",
"version": "1.4.0",
"description": "High throughput template dir writes",
"main": "index.js",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"test": "standard && npm run deps && NODE_ENV=test node test",
"test:cov": "standard && npm run deps && NODE_ENV=test istanbul cover test/index.js"
},
"repository": "yoshuawuyts/copy-template-dir",
"keywords": [
"template",
"directory",
"boilerplate",
"copy",
"concurrent"
],
"license": "MIT",
"dependencies": {
"end-of-stream": "^1.1.0",
"graceful-fs": "^4.1.3",
"maxstache": "^1.0.0",
"maxstache-stream": "^1.0.0",
"mkdirp": "^0.5.1",
"noop2": "^2.0.0",
"pump": "^1.0.0",
"readdirp": "^2.0.0",
"run-parallel": "^1.1.4"
},
"devDependencies": {
"concat-stream": "^1.5.0",
"dependency-check": "^2.5.1",
"istanbul": "^0.3.21",
"rimraf": "^2.4.3",
"standard": "^5.3.1",
"tape": "^4.2.0"
},
"files": [
"index.js",
"bin/*"
]
}