-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "styled-shortcuts",
"version": "2.1.2",
"description": "A props shortcut helper for styled-components.",
"main": "./lib/index.js",
"scripts": {
"prepublish": "npm run lint && npm run _build && npm run _test",
"build": "npm run lint && npm run _build",
"_build": "babel src --out-dir lib --ignore '**/*.test.js'",
"test": "npm run lint && npm run _test",
"posttest": "cowsay Your tests all passed!",
"_test": "jest",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donavon/styled-shortcuts.git"
},
"keywords": [
"react",
"css",
"css-in-js",
"styled-components"
],
"author": "Donavon West <[email protected]> (http://donavon.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/donavon/styled-shortcuts/issues"
},
"homepage": "https://github.com/donavon/styled-shortcuts#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"cowsay": "^1.1.9",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.4"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.js"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}