-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.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
65
66
67
68
69
70
{
"name": "bit-tabs",
"version": "2.0.0",
"description": "A tabs can.Component; allows switching between one of many panels using a tabs interface.",
"main": "dist/cjs/bit-tabs",
"browser": {
"transform": [
"cssify"
]
},
"browserify": {
"transform": [
"cssify"
]
},
"scripts": {
"build": "node build.js",
"test": "testee --browsers firefox test/test.html",
"prepublish": "npm run build",
"publish": "git push origin --tags",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"dependencies": {
"can-component": "^4.0.0",
"can-define": "^2.7.0",
"can-stache": "^4.15.3",
"can-view-model": "^4.0.1",
"cssify": "^0.6.0",
"steal-less": "^1.3.4",
"steal-stache": "^4.1.2"
},
"devDependencies": {
"can-view-autorender": "^5.0.2",
"funcunit": "^3.6.1",
"jquery": ">1.9.0",
"steal": "^1.0.0",
"steal-qunit": "^2.0.0",
"steal-tools": "^1.0.0",
"testee": "^0.8.0"
},
"steal": {
"main": "bit-tabs",
"directories": {
"lib": "src"
},
"plugins": [
"steal-stache",
"steal-less"
]
},
"repository": {
"type": "git",
"url": "https://github.com/bitovi-components/bit-tabs"
},
"keywords": [
"CanJS",
"UI",
"Slider",
"can-component"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitovi-components/bit-tabs/issues"
},
"homepage": "https://github.com/bitovi-components/bit-tabs"
}