-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.83 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.83 KB
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
{
"name": "barometer",
"version": "1.4.1",
"description": "Lightweight module to extract performance metrics from a webpage",
"main": "lib/barometer.js",
"scripts": {
"build": "webpack --config ./webpack.config.js && webpack --config ./webpack.ie.config.js",
"build:test": "browserify test/_fakeDom.js test/*.js -o dist/barometer-test.js",
"coverage": "mocha --require blanket --reporter html-cov ./test/test*.js > coverage.html",
"lint": "eslint ./lib/*.js ./test/*.js",
"pretest": "npm run build:test",
"test": "npm run test:unit && npm run test:karma && npm run test:sauce && npm run test:ie",
"pretest:karma": "npm run build:test",
"test:karma": "karma start ./karma.local.conf.js",
"pretest:sauce": "npm run build:test",
"test:sauce": "karma start ./karma.saucelabs.conf.js",
"test:ie": "karma start ./karma.saucelabs.ie.conf.js",
"test:unit": "mocha test/test*.js"
},
"author": "Oliver Rumbelow",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/holidayextras/barometer"
},
"dependencies": {},
"devDependencies": {
"blanket": "^1.1.9",
"browserify": "^13.0.1",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"karma": "1.1.0",
"karma-chrome-launcher": "1.0.1",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "0.2.2",
"karma-phantomjs-launcher": "1.0.1",
"karma-sauce-launcher": "1.0.0",
"karma-sinon-ie": "^2.0.0-rc10",
"karma-spec-reporter": "0.0.26",
"mocha": "^2.5.3",
"sinon": "^1.7.3",
"webpack": "^1.13.1",
"webpack-jscrush": "0.0.5"
},
"config": {
"blanket": {
"pattern": ".js",
"data-cover-never": [
"node_modules",
"test",
"example"
]
}
}
}