-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "fxos-fastlist",
"main": "fxos-fastlist.js",
"browser": "src/fxos-fastlist.js",
"version": "1.0.0",
"dependencies": {
"fastlist": "^1.0.4",
"fxos-component": "^1.0.0",
"fxos-sub-header": "^1.0.1",
"fxos-theme": "^2.0.1",
"popel": "^1.0.2"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"jshint": "^2.9.1-rc1",
"karma": "^0.13.15",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.2.0",
"mocha": "^2.3.4",
"mozilla-download": "^1.1.1",
"nws": "^0.6.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"test-utils": "github:fxos-components/test-utils",
"webpack": "^1.12.9"
},
"scripts": {
"start": "npm run -s watch & nws -p 8030 -d examples/ -o",
"test-lint": "jshint src/*.js",
"test-dev": "karma start test/karma.conf",
"test-unit": "karma start test/karma.conf --single-run",
"test": "npm run -s test-unit && npm run -s test-lint",
"coveralls": "cat test/lcov.info | coveralls",
"watch": "webpack -w",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git://github.com/fxos-components/fxos-fastlist.git"
},
"bugs": {
"url": "https://github.com/fxos-components/fxos-fastlist/issues"
}
}