-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.4 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": "fxos-sub-header",
"version": "1.0.2",
"homepage": "https://github.com/fxos-components/fxos-sub-header",
"license": "MIT",
"main": "fxos-sub-header.js",
"dependencies": {
"fxos-component": "^1.0.0"
},
"devDependencies": {
"chai": "3.0.0",
"jshint": "^2.7.0",
"karma": "^0.13.9",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.2.0",
"karma-sinon-chai": "^1.1.0",
"marionette-client": "1.9.4",
"marionette-firefox-host": "1.0.4",
"marionette-helper": "0.3.1",
"marionette-js-runner": "1.1.3",
"mozilla-download": "^1.1.1",
"nws": "^0.6.1",
"test-utils": "github:fxos-components/test-utils",
"webpack": "^1.12.9"
},
"scripts": {
"start": "npm run -s watch & nws -p 8060 -d examples/demo -o",
"test-lint": "jshint src/*.js",
"test-dev": "karma start test/karma.conf",
"test-unit": "karma start test/karma.conf --single-run",
"test-integration": "marionette-mocha --reporter spec --host marionette-firefox-host --runtime $FIREFOX_NIGHTLY_BIN --timeout 6000s test/test-integration.js",
"test": "npm run test-lint && npm run test-unit && npm run test-integration",
"watch": "webpack -w",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git://github.com/fxos-components/fxos-sub-header.git"
},
"bugs": {
"url": "https://github.com/fxos-components/fxos-sub-header/issues"
}
}