-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.68 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
{
"name": "fxos-dialog",
"version": "2.0.1",
"homepage": "https://github.com/fxos-components/fxos-dialog",
"license": "MIT",
"main": "fxos-dialog.js",
"browser": "src/fxos-dialog.js",
"dependencies": {
"fxos-component": "^1.0.0",
"fxos-icons": "^2.0.0",
"fxos-text-input": "^1.0.1"
},
"devDependencies": {
"chai": "^3.4.1",
"fxos-button": "^1.0.0",
"fxos-font": "^1.0.0",
"fxos-theme": "^2.0.0",
"jshint": "^2.9.1-rc1",
"karma": "^0.13.15",
"karma-chai-sinon": "^0.1.5",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.2.1",
"marionette-client": "1.9.4",
"marionette-firefox-host": "1.0.4",
"marionette-helper": "0.3.2",
"marionette-js-runner": "1.1.3",
"mozilla-download": "^1.1.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"test-utils": "github:fxos-components/test-utils"
},
"scripts": {
"start": "npm run -s watch & nws -p 8005 -d examples/demo/ -o",
"test-lint": "./node_modules/jshint/bin/jshint src/*.js",
"test-unit": "./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-integration": "./node_modules/.bin/marionette-mocha --reporter spec --host marionette-firefox-host --runtime $FIREFOX_NIGHTLY_BIN --timeout 6000s test/test-integration.js",
"test-unit-dev": "./node_modules/karma/bin/karma start test/karma.conf.js",
"test": "npm run -s test-lint && npm run -s test-unit && npm run -s test-integration",
"build": "webpack",
"watch": "webpack -w"
},
"repository": {
"type": "git",
"url": "git://github.com/fxos-components/fxos-dialog.git"
},
"bugs": {
"url": "https://github.com/fxos-components/fxos-dialog/issues"
}
}