-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "milo-ui",
"version": "2.0.0",
"description": "UI components and schema-based form generator for [milo.js](https://github.com/milojs/milo) framework",
"keywords": [
"framework",
"reactive",
"reactive programming",
"binding",
"data binding",
"mvc",
"model",
"view",
"controller",
"component",
"messenger",
"one-page app"
],
"main": "lib/milo_ui.js",
"scripts": {
"start": "grunt",
"lint": "eslint lib test_browser",
"test": "echo 'No tests'",
"test-browser": "node_modules/.bin/grunt karma && node_modules/.bin/karma start",
"posttest": "npm run lint"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git://github.com/milojs/milo-ui.git"
},
"author": "MailOnline",
"license": "BSD",
"bugs": {
"url": "https://github.com/milojs/milo-ui/issues"
},
"dependencies": {
"async": "^2.0.1",
"restyle": "^0.7.0"
},
"devDependencies": {
"brfs": "^1.4.3",
"browserify": "^14.0.0",
"eslint": "^3.14.1",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-karma": "^2.0.0",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-spec-reporter": "0.0.26",
"karma-webdriver-launcher": "^1.0.5",
"milojs": "^1.0.4",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2"
}
}