-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.67 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
{
"name": "spectre-canjs",
"version": "4.2.4",
"homepage": "https://github.com/roemhildtg/spectre-canjs",
"description": "A js component library built on the Spectre.css framework enabled with CanJS",
"repository": {
"type": "git",
"url": "https://github.com/roemhildtg/spectre-canjs.git"
},
"main": "index.js",
"watch": {
"docs": {
"patterns": [
"."
],
"extensions": "js,mustache,css,less,md",
"ignore": "docs/**"
}
},
"scripts": {
"start": "http-server -c-1",
"pretest": "npm run lint",
"test": "jest",
"build": "steal-tools",
"live": "steal-tools live-reload --main spectre-canjs/docs-main",
"serve-docs": "documentation serve --config documentation.yml --watch",
"docs": "documentation build --config documentation.yml -o docs -f html",
"postdocs": "node docs-bundle",
"prepublish-docs": "git checkout gh-pages && git merge master && npm run docs",
"publish-docs": "git add docs -f && git commit -m docs && git push origin gh-pages -f && git checkout master",
"export": "node build.js",
"lint": "eslint . --fix",
"preversion": "npm run test",
"postpublish": "git push && git push --tags",
"dist": "npm publish && git push origin master && git push --tags",
"dist-beta": "npm publish --tag beta && git push origin master && git push --tags",
"changelog": "changelog spectre-canjs all > CHANGELOG.md && git add . && git commit . -m changelog && git push origin master"
},
"author": "roemhildtg",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.0",
"babel-preset-es2015": "^6.24.1",
"can-connect": "^3.0.1",
"can-debug": "^2.0.1",
"can-fixture": "^3.0.0",
"can-realtime-rest-model": "^1.0.0",
"can-super-model": "^1.0.1",
"can-view-autorender": "^5.0.1",
"eslint": "^5.2.0",
"jest": "^23.6.0",
"json-pretty-html": "^1.1.2",
"steal-css": "^1.3.2",
"steal-less": "^1.3.1",
"steal-stache": "^4.1.2",
"steal-tools": "^2.0.3"
},
"dependencies": {
"animate.css": "^3.6.1",
"axios": "^0.18.0",
"can-component": "^4.4.2",
"can-define": "^2.5.3",
"can-dom-data": "^1.0.1",
"can-stache": "^4.12.0",
"can-stache-converters": "^4.2.0",
"can-util": "^3.12.0",
"can-view-model": "^4.0.1",
"dropzone": "^5.5.1",
"flatpickr": "^4.5.1",
"font-awesome": "^4.7.0",
"spectre.css": "^0.5.3",
"steal": "^2.1.1",
"sweetalert2": "^7.26.10"
},
"steal": {
"configDependencies": [
"live-reload"
],
"plugins": [
"steal-css",
"steal-less",
"steal-stache"
]
},
"jest": {
"collectCoverage": true
}
}