-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.18 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
{
"name": "@nfront/global-styles",
"description": "A package for creating independent global CSS styles, and automatically placing them at the top of the `<head>` element. Use with for instance gatsby-plugin-global-styles: https://github.com/nfront/gatsby-plugin-global-styles",
"source": "src/index.js",
"main": "dist/index.js",
"author": "Magnus Rinnan Gaarder <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --watch --testPathPattern=test\\.[jt]sx?$",
"unit": "jest --testPathPattern=test\\.[jt]sx?$",
"integration": "jest --testPathPattern=ispec\\.[jt]sx?$",
"dev": "microbundle watch",
"build": "microbundle",
"watch": "babel -w src --out-dir dist --ignore **/__tests__",
"travis": "git push origin master",
"publishManually": "npm publish",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/nfront/global-styles.git"
},
"keywords": [
"global-styles",
"css",
"css-in-js",
"global",
"styles",
"styling",
"react"
],
"bugs": {
"url": "https://github.com/nfront/global-styles/issues"
},
"homepage": "https://github.com/nfront/global-styles#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-flowtype": "^3.6.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"jest": "^24.7.1",
"microbundle": "^0.11.0",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"semantic-release": "^15.13.3"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}