-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.78 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
{
"name": "milojs",
"version": "1.6.2",
"description": "Browser/nodejs reactive programming and data driven DOM manipulation with modular components.",
"keywords": [
"framework",
"reactive",
"reactive programming",
"binding",
"data binding",
"mvc",
"model",
"view",
"controller",
"component",
"messenger",
"one-page app"
],
"main": "lib/milo.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive --reporter=spec",
"test-cov": "istanbul cover -x 'test' --dir ./coverage/node node_modules/mocha/bin/_mocha -- --recursive --reporter=spec",
"test-browser": "grunt karma && karma start --single-run --browsers Chrome",
"test-travis": "npm run test-cov && grunt build && karma start --single-run --browsers Firefox && istanbul report"
},
"repository": {
"type": "git",
"url": "git://github.com/milojs/milo.git"
},
"author": "MailOnline",
"license": "BSD",
"bugs": {
"url": "https://github.com/milojs/milo/issues"
},
"dependencies": {
"milo-core": "^1.1.1",
"querystringparser": "^0.1.1"
},
"devDependencies": {
"async": "^2.1.2",
"brfs": "^1.4.3",
"browserify": "^14.0.0",
"eslintify": "^3.1.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-exorcise": "^2.1.1",
"grunt-istanbul": "^0.7.1",
"grunt-karma": "^2.0.0",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.5",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-spec-reporter": "0.0.26",
"karma-webdriver-launcher": "^1.0.5",
"mocha": "^3.1.2"
}
}