-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 2.23 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
{
"name": "topcoat-navigation-bar",
"version": "0.0.0-development",
"description": "Topcoat navigation bar skin",
"style": "src/topcoat-navigation-bar",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/",
"build:mobile-dark": "rsn --namespace='topcoat' -o ./css/mobile-dark-navigation-bar.css -p [topcoat-variables-shared,topcoat-variables-mobile,topcoat-variables-dark,topcoat-fonts,topcoat-root] ./src/topcoat-navigation-bar.css",
"build:mobile-light": "rsn --namespace='topcoat' -o ./css/mobile-light-navigation-bar.css -p [topcoat-variables-shared,topcoat-variables-mobile,topcoat-variables-light,topcoat-fonts,topcoat-root] ./src/topcoat-navigation-bar.css",
"build": "rm -rfv ./css/* && 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 Navigation Bar' -t './node_modules/topdoc-theme'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/topcoat/navigation-bar.git"
},
"keywords": [
"css",
"topcoat",
"adobe",
"navigation",
"bar"
],
"author": "Kristofer Joseph <kristoferjoseph@gmail.com> (http://kristoferjoseph.com/)",
"contributors": [
"Garth Braithwaite <garthdb@gmail.com> (http://garthdb.com)",
"Andrei Oprea <andrei.br92@gmail.com> (http://andreio.net/)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/topcoat/topcoat/issues"
},
"homepage": "http://topcoat.io",
"devDependencies": {
"autoprefixer": "^6.4.0",
"cz-customizable": "^4.0.0",
"mocha": "^3.0.2",
"resin": "^1.2.1",
"semantic-release": "^6.3.2",
"topcoat-fonts": "^0.3.0",
"topcoat-root": "^1.0.0",
"topcoat-variables-dark": "^1.1.2",
"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"
}
},
"dependencies": {
"topcoat-navigation-bar-base": "^1.0.0"
}
}