-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.36 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
{
"name": "@novivia/build-module",
"role": "module-builder",
"version": "0.5.3",
"engines": {
"node": ">=4",
"npm": ">=3"
},
"license": "SEE LICENSE IN LICENSE.md",
"description": "Novivia Node.js module builder and packager.",
"authors": [
"Mathieu M-Gosselin <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:Novivia/tools.module-builder.git"
},
"scripts": {
"build": "./cliWrapper build",
"lint": "novivia-linter lint",
"pub": "./cliWrapper publish",
"release": "./cliWrapper release"
},
"bin": {
"novivia-builder": "./cliWrapper"
},
"novivia-builder": {
"babelPatterns": [
"cli.js"
],
"packagePatterns": [
"cliWrapper"
]
},
"novivia-linter": {
"targets": {
"global": [
"lib",
"cli.js"
]
},
"options": ""
},
"devDependencies": {
"@novivia/linter": "^1.10.1"
},
"dependencies": {
"@novivia/babel": "^1.1.0",
"babel-core": "^6.24.1",
"better-log": "^1.3.3",
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"fs-extra": "^3.0.0",
"fstream": "^1.0.11",
"json5": "^0.5.1",
"lodash": "^4.17.4",
"micromatch": "^2.3.11",
"node-uuid": "^1.4.8",
"pkginfo-json5": "^0.5.0",
"tar": "^2.2.1",
"tempura": "^0.0.8",
"walkdir": "^0.0.11",
"yargs": "^7.1.0"
}
}