-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@tucows/donejs-carousel-plugin",
"version": "3.3.0",
"description": "A carousel plugin for donejs",
"homepage": "https://github.com/tucows/donejs-carousel-plugin",
"repository": {
"type": "git",
"url": "git://github.com/Tucows/donejs-carousel-plugin.git"
},
"author": "Ranjan Subbiah <[email protected]>",
"contributors": [
{
"name": "Paul Tichonczuk",
"email": "[email protected]",
"url": "http://tracer.ca"
}
],
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update version number\" && git checkout -b release && git add -f dist/",
"postpublish": "git push --tags && git checkout master && git branch -D release && git push",
"test": "karma start config/karma.js",
"test-debug": "karma start --log-level debug ./config/karma.js",
"eslint": "eslint --fix 'src/**/*.js'",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"build": "node build.js",
"develop": "done-serve --static --develop --port 8080"
},
"main": "@tucows/donejs-carousel-plugin",
"files": [
"src"
],
"browser": {
"transform": [
"cssify"
]
},
"browserify": {
"transform": [
"cssify"
]
},
"keywords": [
"donejs-plugin"
],
"steal": {
"main": "donejs-carousel-plugin",
"configDependencies": [
"live-reload"
],
"npmIgnore": [
"generator-donejs",
"donejs-cli",
"steal-tools"
],
"plugins": [
"steal-less",
"steal-stache"
],
"directories": {
"lib": "src"
}
},
"dependencies": {
"can-component": "^4.6.3",
"can-define": "^2.8.0",
"can-stache": "^4.17.21",
"can-view-autorender": "^5.0.4",
"cssify": "^1.0.3",
"natives": "^1.1.6",
"steal": "^2.2.4",
"steal-css": "^1.3.2",
"steal-less": "^1.3.4",
"steal-platform": "^0.0.4",
"steal-stache": "^4.1.5",
"steal-tools": "^2.2.6"
},
"devDependencies": {
"can-fixture": "^3.1.7",
"chai": "^4.3.4",
"chance": "^1.1.7",
"done-serve": "^3.3.1",
"donejs-cli": "^3.2.2",
"eslint-config-tucows": "^1.0.7",
"funcunit": "^3.7.0",
"get-port-sync": "^1.0.0",
"karma": "^6.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"sinon": "^7.5.0",
"steal-mocha": "^2.0.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tucows/donejs-carousel-plugin/issues"
}
}