-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
{
"name": "lessteps",
"version": "0.9.7",
"description": "lessteps",
"main": "lib/index.js",
"scripts": {
"prepublish": "node_modules/babel-cli/bin/babel.js src --out-dir lib",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafoli/lessteps.git"
},
"keywords": [
"lessteps",
"cli",
"liferay"
],
"author": "Rafael Oliveira <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rafoli/lessteps/issues"
},
"homepage": "https://github.com/rafoli/lessteps#readme",
"dependencies": {
"async": "^2.1.4",
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"cheerio": "^1.0.0-rc.1",
"child_process": "^1.0.2",
"colors": "^1.1.2",
"commander": "^2.9.0",
"concurrently": "^3.3.0",
"js-yaml": "^3.8.2",
"progress": "^2.0.0",
"prompt": "^1.0.0",
"properties-parser": "^0.3.1",
"rimraf": "^2.5.4",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"sprintf-js": "^1.0.3"
},
"bin": {
"lessteps": "lib/index.js",
"les": "lib/index.js"
},
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0"
}
}