-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "mreframe",
"version": "0.1.6",
"description": "A reagent/re-frame imitation that uses Mithril instead",
"main": "index.js",
"author": "LeXofLeviafan <lexofleviafan@gmail.com>",
"license": "MIT",
"scripts": {
"install": "cake transpile",
"prepare": "cake build:all",
"build": "cake transpile && cake build",
"build-min": "cake transpile && cake --minify build",
"build:nodeps": "cake transpile && cake build:nodeps",
"build-min:nodeps": "cake transpile && cake --minify build:nodeps",
"build:all": "cake transpile && cake build:all",
"clean": "cake clean",
"test": "cake test",
"perftest": "cake perftest"
},
"dependencies": {
"coffeescript": "^2.6.1",
"mithril": "^2.2.2"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^17.0.0",
"ospec": "^4.1.6",
"rimraf": "^3.0.2",
"tinyify": "^3.0.0"
},
"repository": "github:LeXofLeviafan/mreframe",
"homepage": "https://lexofleviafan.github.io/mreframe",
"bugs": "https://github.com/LeXofLeviafan/mreframe/issues",
"keywords": ["mithril"]
}