-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 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
{
"name": "@egstad/detect-motion",
"version": "1.0.4",
"description": "A micro ES6 module (~0.5KB) for detecting prefers-reduced-motion and watching for changes.",
"main": "index.js",
"scripts": {
"start": "parcel ./test/index.html --out-dir ./test/dist",
"test": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"prepublish": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egstad-construct/detect-motion.git"
},
"keywords": [
"prefers-reduced-motion",
"accessibility",
"a11y",
"reduce",
"motion",
"ui",
"es6",
"module"
],
"author": "Jordan Egstad",
"license": "MIT",
"bugs": {
"url": "https://github.com/egstad-construct/detect-motion/issues"
},
"homepage": "https://github.com/egstad-construct/detect-motion#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.6.1",
"jest": "^22.4.3",
"parcel-bundler": "^1.7.0",
"jest-coverage-badges": "^1.1.2"
},
"jest": {
"verbose": true,
"testURL": "http://localhost:1234/",
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
}
}