-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.16 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
{
"name": "can-search-select",
"version": "0.3.0",
"description": "Dropdown select component with a search option",
"homepage": "",
"repository": {
"type": "git",
"url": "git://github.com/icanjs/can-search-select.git"
},
"author": {
"name": "Ilya Fadeev",
"email": "[email protected]",
"url": ""
},
"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",
"testee": "testee test.html --browsers firefox --reporter Spec",
"test": "npm run lint && npm run testee",
"lint": "standard",
"lint:fix": "standard --fix",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"build": "node build.js",
"develop": "done-serve --static --develop --port 8080"
},
"main": "dist/cjs/index",
"browser": {
"transform": [
"cssify"
]
},
"browserify": {
"transform": [
"cssify"
]
},
"keywords": [
"canjs",
"component",
"dropdown",
"select",
"search select",
"donejs-plugin"
],
"standard": {
"env": [
"mocha"
]
},
"steal": {
"main": "can-search-select",
"configDependencies": [
"live-reload"
],
"npmIgnore": [
"testee",
"generator-donejs",
"donejs-cli",
"steal-tools"
],
"plugins": [
"steal-less",
"steal-stache"
],
"directories": {
"lib": "src"
}
},
"dependencies": {
"can-component": "^3.0.7",
"can-define": "^1.0.20",
"can-stache": "^3.0.24",
"can-view-autorender": "^3.0.4"
},
"devDependencies": {
"bootstrap": "^3.3.7",
"chai": "^4.1.2",
"cssify": "^1.0.3",
"donejs-cli": "^1.0.2",
"mocha": "^3.5.0",
"standard": "^10.0.3",
"steal": "^1.5.13",
"steal-less": "^1.2.0",
"steal-mocha": "^1.0.0",
"steal-stache": "^3.1.1",
"steal-tools": "^1.8.4",
"testee": "^0.7.0"
},
"license": "MIT"
}