-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.32 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": "metal-tools-soy",
"version": "6.0.0",
"description": "Tool that can be used to compile metal soy files",
"license": "BSD",
"repository": "metal/metal-tools-soy",
"author": {
"name": "Maira Bello",
"email": "maira.araujo@liferay.com"
},
"engines": {
"node": ">=0.12.0"
},
"files": [
"bin/**/*.js",
"index.js",
"jar",
"lib/**/*.js"
],
"scripts": {
"lint": "eslint *.js lib/**/*.js",
"precommit": "lint-staged",
"test": "jest"
},
"bin": {
"metalsoy": "./bin/metalsoy.js"
},
"lint-staged": {
"*.js": [
"prettier --write",
"npm run lint",
"git add"
]
},
"keywords": [
"metal",
"soy"
],
"dependencies": {
"globby": "^6.1.0",
"gulp-if": "^2.0.0",
"gulp-ignore": "^2.0.1",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.7",
"gulp-wrapper": "^1.0.0",
"merge": "^1.2.0",
"soyparser": "^1.0.3",
"stream-combiner": "^0.2.2",
"stream-consume": "^0.1.0",
"through2": "^2.0.0",
"vinyl-fs": "^2.2.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"del": "^2.1.0",
"eslint": "^3.19.0",
"eslint-config-liferay": "^1.0.1",
"husky": "^0.13.4",
"jest": "^20.0.4",
"js-beautify": "^1.6.14",
"lint-staged": "^3.5.1",
"merge": "^1.2.0",
"prettier": "^1.6.0"
}
}