-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "respondable",
"version": "1.0.1",
"description": "Utilizes matchMedia to performantly return conditional values based on media queries.",
"main": "dist/index.min.js",
"scripts": {
"clean": "rimraf ./dist ./coverage ./.nyc_output",
"build": "npm run clean && mkdir dist && browserify ./src/index.js -s respondable -o dist/index.min.js -t [ babelify --presets [ es2015 stage-2 babili ] ]",
"build:watch": "nodemon -i dist --exec npm run build",
"flow": "flow",
"lint": "eslint src test",
"ava": "nyc ava",
"test": "npm run lint && npm run flow && npm run ava",
"test:watch": "nodemon --exec npm test",
"coverage-report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=lcov && cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run test && npm run build"
},
"ava": {
"source": "src",
"files": "test/*.spec.js",
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"node_modules",
"dist",
"example",
"coverage"
]
},
"keywords": [
"responsive",
"matchMedia",
"breakpoint",
"query",
"media",
"viewport"
],
"contributors": [
"Brandon Dail <cottoncrypt@gmail.com>",
"Nathan Schwartz <nathan.schwartz95@gmail.com>",
"Ari Frankel <ari.l.frankel@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.1.4",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^7.3.0",
"babili": "^0.1.2",
"browserify": "^14.4.0",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-concierge-auctions-base": "0.0.6",
"flow-bin": "^0.47.0",
"nodemon": "^1.11.0",
"nyc": "^10.3.2",
"rimraf": "^2.6.1",
"sinon": "^2.3.2"
}
}