-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.09 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
{
"name": "mithril-app",
"version": "0.0.1",
"description": "mithril.js app",
"main": "server.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"postinstall": "jspm install",
"precommit": "npm test",
"pretest": "node_modules/.bin/standard",
"start": "node server",
"build": "jspm bundle app --inject --minify"
},
"repository": {
"type": "git",
"url": "git@github.com:capaj/jspm-mithril.git"
},
"author": "capajj@gmail.com",
"bugs": {
"url": "https://github.com/capaj/jspm-mithril/issues"
},
"homepage": "https://github.com/capaj/jspm-mithril",
"jspm": {
"directories": {
"baseURL": "public"
},
"dependencies": {
"capaj/systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@^0.5.6",
"mithril": "npm:mithril@^0.2.4"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24"
},
"peerDependencies": {
"core-js": "npm:core-js@^1.1.4",
"fs": "github:jspm/nodelibs-fs@^0.2.0-alpha",
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha"
},
"overrides": {
"npm:babel-core@5.8.35": {
"main": "browser.js",
"dependencies": {},
"jspmNodeConversion": false,
"map": {
"regenerator/runtime": "babel-runtime/regenerator/runtime"
},
"meta": {
"browser.js": {
"exports": "babel"
}
}
},
"npm:babel-runtime@5.8.35": {
"main": false,
"dependencies": {},
"optionalDependencies": {
"core-js": "^1.2.0"
}
}
}
},
"dependencies": {
"http-server": "^0.9.0",
"chokidar-socket-emitter": "^0.5.2"
},
"devDependencies": {
"babel": "^6.5.2",
"chai": "^3.3.0",
"glob": "^7.0.3",
"husky": "^0.11.4",
"jsdom": "^9.0.0",
"jspm": "^0.17.0-beta.14",
"mocha": "^2.3.3",
"standard": "^7.0.1"
},
"standard": {
"ignore": [
"public/jspm.config.js",
"public/jspm.browser.js"
]
}
}