-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
74 lines (74 loc) · 2.25 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
70
71
72
73
74
{
"name": "styled-tools",
"version": "1.7.2",
"description": "Utilities for styled-components",
"license": "MIT",
"repository": "diegohaz/styled-tools",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "types/index.d.ts",
"author": {
"name": "Diego Haz",
"email": "[email protected]",
"url": "https://github.com/diegohaz"
},
"files": [
"dist",
"types"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src test benchmark",
"type-check": "tsc",
"flow": "flow check",
"benchmark": "cross-env NODE_ENV=test babel-node benchmark",
"docs": "documentation readme src --section=API --pe flow -c documentation.yml",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "cross-env BABEL_ENV=cjs babel src -d dist/cjs",
"build:es": "cross-env BABEL_ENV=es babel src -d dist/es",
"prerelease": "npm run lint && npm test && npm run build",
"release": "standard-version",
"postpublish": "git push origin master --follow-tags"
},
"keywords": [
"styled-tools"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-transform-flow-strip-types": "7.2.3",
"@babel/preset-env": "7.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"benchmark": "2.1.4",
"cross-env": "5.2.0",
"documentation": "9.1.1",
"eslint": "5.12.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.5.0",
"eslint-plugin-flowtype": "3.2.1",
"eslint-plugin-flowtype-errors": "3.6.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "3.0.1",
"flow-bin": "0.90.0",
"jest-cli": "23.6.0",
"lodash": "4.17.13",
"opn-cli": "4.0.0",
"polished": "2.3.3",
"prettier": "1.15.3",
"react": "16.7.0",
"react-dom": "16.7.0",
"rimraf": "2.6.3",
"standard-version": "4.4.0",
"styled-tools": "1.6.0",
"typescript": "3.2.2"
}
}