forked from mnowotny/npm-build-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 994 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
40
41
42
43
44
45
46
{
"author": {
"name": "Marvin Nowotny",
"email": "development@mnowotny.com"
},
"description": "Cross-platform command-line tools to help use npm as a build tool.",
"keywords": [
"build",
"cli",
"clean",
"concat",
"copy",
"exec",
"glob",
"npm",
"pipe",
"run",
"shell",
"tool"
],
"license": "MIT",
"main": "src/index.js",
"name": "@mnowotny/npm-build-tools",
"repository": {
"type": "git",
"url": "git://github.com/mnowotny/npm-build-tools.git"
},
"bugs": {
"url": "https://github.com/mnowotny/npm-build-tools/issues"
},
"homepage": "https://github.com/mnowotny/npm-build-tools",
"version": "2.3.1",
"bin": {
"n-clean": "./bin/n-clean",
"n-concat": "./bin/n-concat",
"n-copy": "./bin/n-copy",
"n-embed": "./bin/n-embed",
"n-pipe": "./bin/n-pipe",
"n-run": "./bin/n-run"
},
"dependencies": {
"commander": "^2.7.1",
"chokidar": "3.2.2",
"glob": "^5.0.1"
}
}