-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
119 lines (119 loc) · 3.23 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "crucible",
"version": "0.4.1",
"description": "Serverless CMS backed by Firebase",
"main": "./gen/index.js",
"repository": "tivac/crucible",
"scripts": {
"build": "node build/build.js",
"eslint": "eslint .",
"export": "node build/build.js --compress=true",
"lint": "npm run eslint && npm run stylelint",
"preview": "changes || true",
"release": "npm version -m \"v%s\"",
"start": "node build/serve.js",
"stylelint": "stylelint src/**/*.css",
"test": "mocha",
"posttest": "npm run lint && npm run export",
"preversion": "npm test",
"version": "changes",
"postversion": "git push --follow-tags"
},
"keywords": [
"cms",
"mithril",
"firebase"
],
"author": "Pat Cavit <[email protected]>",
"license": "MIT",
"devDependencies": {
"@studio/changes": "^1.1.0",
"awesomplete": "^1.1.0",
"better-assert": "^1.0.2",
"chokidar": "^1.5.1",
"codemirror": "^5.23.0",
"connect": "^3.6.0",
"cssnano": "^3.7.7",
"date-fns": "^1.27.2",
"ecstatic": "^2.1.0",
"eslint": "^3.15.0",
"eslint-config-arenanet": "^3.3.0",
"filesize": "^3.5.4",
"firebase": "^2.4.1",
"fuzzysearch": "^1.0.3",
"globule": "^1.1.0",
"humanize-duration": "^3.6.0",
"husky": "^0.13.1",
"jsesc": "^2.2.0",
"lodash.assign": "^4.0.0",
"lodash.capitalize": "^4.0.1",
"lodash.clamp": "^4.0.3",
"lodash.clone": "^4.5.0",
"lodash.debounce": "^4.0.0",
"lodash.filter": "^4.2.1",
"lodash.foreach": "^4.3.0",
"lodash.get": "^4.0.0",
"lodash.map": "^4.0.0",
"lodash.mapkeys": "^4.1.0",
"lodash.mapvalues": "^4.0.0",
"lodash.merge": "^4.0.1",
"lodash.set": "^4.0.0",
"lodash.times": "^4.0.0",
"lodash.unset": "^4.5.2",
"mime-types": "^2.1.15",
"minimist": "^1.2.0",
"mithril": "^0.2.0",
"mithril-objectify": "^3.1.0",
"mithril-query": "0.9.3",
"mocha": "^3.1.2",
"modular-css-namer": "^5.0.2",
"modular-css-rollup": "^4.0.4",
"morgan": "^1.8.1",
"postcss-import": "^9.1.0",
"postcss-nested": "^1.0.0",
"pretty-bytes": "^4.0.2",
"purecss": "^0.6.0",
"remarkable": "^1.7.1",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-filesize": "^1.0.1",
"rollup-plugin-json": "^2.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-strip": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-pluginutils": "^2.0.1",
"rollup-watch": "^3.2.2",
"run-parallel": "^1.1.4",
"shelljs": "^0.7.3",
"sluggo": "^0.2.0",
"stylelint": "^7.8.0",
"stylelint-config-arenanet": "^1.2.0",
"stylelint-config-standard": "^16.0.0",
"unique-slug": "^2.0.0",
"url": "^0.11.0",
"url-join": "0.0.1",
"validate-commit-msg": "^2.11.1",
"whatwg-fetch": "^0.11.0"
},
"eslintConfig": {
"extends": "arenanet",
"env": {
"node": true,
"mocha": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "module"
},
"rules": {
"prefer-template": "off",
"consistent-this": "off"
}
},
"stylelint": {
"extends": "stylelint-config-arenanet"
}
}