-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
43 lines (43 loc) · 1.42 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
{
"name": "digit",
"description": "Touch-optimized MontageJS components for tablets and phones.",
"version": "4.0.0",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/montagejs/digit.git"
},
"dependencies": {
"montage": "montagejs/montage#master"
},
"devDependencies": {
"concurrently": "^3.4.0",
"http-server": "^0.9.0",
"jasmine-console-reporter": "^1.2.7",
"jasmine-core": "^2.5.2",
"jshint": "^2.9.5",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"montage-testing": "git://github.com/montagejs/montage-testing.git#master",
"open": "7.0.0"
},
"scripts": {
"lint": "jshint .",
"test": "node test/run-node.js",
"test:karma": "karma start --no-auto-watch --single-run",
"test:karma-dev": "karma start --auto-watch --no-single-run",
"test:jasmine": "concurrently \"http-server -a localhost -p 8085\" \"open http://localhost:8085/test/run.html\"",
"start:demo": "concurrently \"http-server -a localhost -p 8085\" \"open http://localhost:8085/demo/sizing/index.html\"",
"start:overview": "concurrently \"http-server -a localhost -p 8085\" \"open http://localhost:8085/overview/index.html\""
},
"exclude": [
"demo",
"report",
"overview",
"test"
]
}