-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 2.66 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
{
"name": "topcoat-button",
"description": "Topcoat default button skin",
"style": "src/topcoat-button",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/",
"build:desktop-dark": "rsn --namespace='topcoat' -o ./css/desktop-dark-button.css -p [topcoat-variables-shared,topcoat-variables-desktop,topcoat-variables-dark,topcoat-fonts,topcoat-root] ./src/topcoat-button.css",
"build:desktop-light": "rsn --namespace='topcoat' -o ./css/desktop-light-button.css -p [topcoat-variables-shared,topcoat-variables-desktop,topcoat-variables-light,topcoat-fonts,topcoat-root] ./src/topcoat-button.css",
"build:mobile-dark": "rsn --namespace='topcoat' -o ./css/mobile-dark-button.css -p [topcoat-variables-shared,topcoat-variables-mobile,topcoat-variables-dark,topcoat-fonts,topcoat-root] ./src/topcoat-button.css",
"build:mobile-light": "rsn --namespace='topcoat' -o ./css/mobile-light-button.css -p [topcoat-variables-shared,topcoat-variables-mobile,topcoat-variables-light,topcoat-fonts,topcoat-root] ./src/topcoat-button.css",
"build": "rm -rfv ./css/* && npm run build:desktop-dark && npm run build:desktop-light && npm run build:mobile-dark && npm run build:mobile-light",
"pretest": "npm run build",
"prepublish": "npm run topdoc",
"topdoc": "npm run build && rm -rfv ./demo/* && topdoc -s ./css -d ./docs -p 'Topcoat Button' -t './node_modules/topdoc-theme'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/topcoat/button.git"
},
"keywords": [
"css",
"topcoat",
"button",
"topcoat-component"
],
"author": "Kristofer Joseph <[email protected]> (http://kristoferjoseph.com/)",
"contributors": [
"Garth Braithwaite <[email protected]> (http://garthdb.com)",
"Andrei Oprea <[email protected]> (http://andreio.net/)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/topcoat/topcoat/issues"
},
"homepage": "http://topcoat.io",
"dependencies": {
"topcoat-button-base": "^1.0.1"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"cz-customizable": "^4.0.0",
"mocha": "^3.0.2",
"resin": "^1.2.1",
"semantic-release": "^4.3.5",
"topcoat-fonts": "^0.3.0",
"topcoat-root": "^1.0.0",
"topcoat-variables-dark": "^1.1.2",
"topcoat-variables-desktop": "^1.1.0",
"topcoat-variables-light": "^1.1.0",
"topcoat-variables-mobile": "^1.1.0",
"topcoat-variables-shared": "^1.1.0",
"topdoc": "^0.4.0",
"topdoc-theme": "^0.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}