-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.17 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
{
"name": "can-auth-component",
"version": "3.2.2",
"description": "Authentication components for CanJS",
"homepage": "https://github.com/icanjs/auth-component",
"repository": {
"type": "git",
"url": "git://github.com/icanjs/can-auth-component.git"
},
"author": {
"name": "Marshall Thompson",
"email": "[email protected]",
"url": "https://github.com/marshallswain"
},
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run lint && npm run testee",
"lint": "standard",
"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",
"document": "documentjs",
"develop": "done-serve --static --develop --port 8080"
},
"main": "src/can-auth-component",
"keywords": [
"canjs",
"can",
"component",
"donejs",
"authentication"
],
"steal": {
"main": "can-auth-component",
"configDependencies": [
"live-reload"
],
"npmIgnore": [
"documentjs",
"testee",
"generator-donejs",
"donejs-cli",
"steal-tools"
],
"plugins": [
"steal-css",
"steal-less",
"steal-stache",
"steal-svg"
],
"directories": {
"lib": "src"
},
"ext": {
"svg": "steal-svg"
}
},
"dependencies": {
"can-component": "^3.0.4",
"can-define": "^1.0.10",
"can-stache": "^3.0.16",
"can-stache-bindings": "^3.0.6",
"feathers-authentication-popups": "^0.1.2",
"steal": "^1.0.6",
"steal-css": "^1.0.0",
"steal-less": "^1.0.1",
"steal-stache": "^3.0.4",
"steal-svg": "0.0.5"
},
"devDependencies": {
"can-view-autorender": "^3.0.3",
"done-serve": "^0.2.0",
"standard": "^10.0.2",
"steal": "^1.0.4",
"steal-qunit": "^1.0.0",
"steal-tools": "^1.0.1",
"testee": "^0.6.1"
}
}