forked from callstack/linaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@csegames/linaria",
"version": "0.1.102",
"description": "Blazing fast zero-runtime CSS in JS library",
"main": "lib/index.js",
"bin": "bin/linaria.js",
"files": [
"bin/",
"lib/",
"react.js",
"rollup.js",
"server.js",
"babel.js",
"loader.js",
"stylelint-config.js",
"index.d.ts",
"react.d.ts",
"server.d.ts"
],
"license": "MIT",
"repository": "git@github.com:callstack/linaria.git",
"bugs": {
"url": "https://github.com/callstack/linaria/issues"
},
"homepage": "https://github.com/callstack/linaria#readme",
"keywords": [
"react",
"css",
"css-in-js",
"styled-components",
"babel-plugin",
"babel",
"webpack"
],
"scripts": {
"lint": "eslint .",
"flow": "flow",
"typescript": "dtslint",
"test": "jest",
"add-contributor": "all-contributors add",
"prebuild": "del lib",
"build": "babel src --out-dir lib --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps && flow-copy-source -i '{**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**}' src lib",
"watch": "babel src --out-dir lib --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps --watch",
"prepare": "yarn build",
"release": "release-it",
"website": "yarn --cwd website",
"bootstrap": "yarn && yarn website install"
},
"publishConfig": {
"registry": "http://registry.camelotunchained.com"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@callstack/eslint-config": "^3.0.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/react": "^16.8.4",
"all-contributors-cli": "^6.1.1",
"babel-core": "^7.0.0-bridge.0",
"codecov": "^3.2.0",
"commitlint": "^7.5.2",
"conventional-changelog-cli": "^2.0.12",
"del-cli": "^1.1.0",
"dtslint": "^0.4.9",
"eslint": "^5.14.1",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "^0.93.0",
"flow-copy-source": "^2.0.3",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"react": "^16.8.3",
"react-test-renderer": "^16.8.3",
"release-it": "^10.1.0",
"strip-ansi": "^5.0.0"
},
"dependencies": {
"@babel/core": "^7.3.3",
"@babel/generator": "^7.3.3",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/register": "^7.0.0",
"@emotion/is-prop-valid": "^0.7.3",
"cosmiconfig": "^5.1.0",
"dedent": "^0.7.0",
"enhanced-resolve": "^4.1.0",
"glob": "^7.1.3",
"loader-utils": "^1.2.3",
"mkdirp": "^0.5.1",
"normalize-path": "^3.0.0",
"postcss": "^7.0.14",
"react-is": "^16.8.3",
"rollup-pluginutils": "^2.4.1",
"source-map": "^0.7.3",
"stylis": "^3.5.4",
"yargs": "^13.2.1"
},
"resolutions": {
"**/babel-core": "7.0.0-bridge.0"
},
"jest": {
"testRegex": "/__tests__/.*\\.(test|spec)\\.js$",
"testEnvironment": "node"
}
}