-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "media-query-facade",
"version": "1.0.37",
"description": "A nicer JavaScript media query API.",
"main": "lib/media-query-facade.js",
"homepage": "https://github.com/tanem/media-query-facade",
"bugs": {
"url": "http://github.com/tanem/media-query-facade/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/tanem/media-query-facade.git"
},
"scripts": {
"clean": "rimraf dist lib",
"lint": "standard",
"test": "jest && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true",
"start": "babel-node ./bin/start.js",
"build:lib": "babel src -d lib",
"build:umd": "babel-node ./bin/build.js umd",
"build:umd:min": "babel-node ./bin/build.js umd:min",
"build": "npm run clean && npm run build:lib && npm run build:umd && npm run build:umd:min",
"preversion": "npm run lint && npm test",
"version": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"release": "npm version -m 'Release v%s'"
},
"keywords": [
"media",
"query",
"facade"
],
"author": {
"name": "Tane Morgan",
"url": "http://github.com/tanem"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-env": "^1.1.4",
"coveralls": "^2.11.15",
"jest": "^18.0.0",
"matchmedia-polyfill": "tanem/matchMedia.js#6c0ba01",
"standard": "^8.0.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"standard": {
"globals": [
"test",
"expect"
]
},
"jest": {
"collectCoverage": true,
"setupFiles": [
"./node_modules/matchmedia-polyfill/matchMedia.js",
"./node_modules/matchmedia-polyfill/matchMedia.addListener.js"
]
}
}