-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 KB
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": "ho",
"version": "1.2.0",
"description": "Ho ho ho the jolly css/less system",
"main": "lib",
"bin": {
"ho": "bin/ho"
},
"scripts": {
"prepublish":"npm run build",
"lint": "eslint ./src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir lib",
"preexample": "npm run build",
"example": "./bin/ho compile -e example/main.less -o example/styles.css -c package.json --verbose"
},
"repository": {
"type": "git",
"url": "git://github.com/hocss/ho.git"
},
"keywords": [
"ho",
"css",
"less",
"styleguide",
"compiler",
"conformance",
"framework",
"system"
],
"ho": {
"autoprefixer-transform": {
"browsers": [
"last 4 versions"
]
}
},
"author": "Matt Styles",
"license": "ISC",
"bugs": {
"url": "https://github.com/hocss/ho/issues"
},
"homepage": "https://github.com/hocss/ho",
"dependencies": {
"babel-polyfill": "^6.2.0",
"chalk": "^1.1.1",
"chokidar": "^1.3.0",
"glob": "^6.0.1",
"ho-compiler": "^1.0.0",
"yargs": "^3.30.0"
},
"devDependencies": {
"autoprefixer-transform": "^0.3.1",
"babel-cli": "^6.2.0",
"babel-plugin-transform-class-properties": "^6.2.2",
"babel-preset-es2015-node4": "^2.0.1"
}
}