-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
121 lines (121 loc) · 3.04 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
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "okami",
"version": "0.2.5",
"main": "dist/okami.cjs.js",
"module": "dist/okami.esm.js",
"browser": "dist/okami.umd.js",
"keywords": [
"react",
"calendar",
"composable",
"primitives"
],
"author": "wcastand <[email protected]> (https://github.com/wcastand)",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Kilix/okami.git"
},
"scripts": {
"start": "nps",
"dev": "nps build.watch",
"test": "nps test",
"test:watch": "nps 'test.watch'",
"prepare": "nps build",
"validate": "yarn start validate",
"flow": "flow"
},
"peerDependencies": {
"react": ">=0.14",
"react-dom": "15.6.1 || ^16.0"
},
"devDependencies": {
"@storybook/addon-options": "3.3.11",
"@storybook/addon-storyshots": "3.3.11",
"@storybook/react": "3.3.11",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "22.1.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"bundlesize": "^0.15.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "3.3.1",
"eslint": "4.16.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-prettier": "2.5.0",
"fela": "5.1.1",
"fela-dom": "5.0.7",
"fela-preset-web": "5.0.7",
"flow-bin": "^0.64.0",
"glamor": "2.20.40",
"glamorous": "4.6.0",
"googleapis": "21.3.0",
"html-tag-names": "1.1.2",
"husky": "0.14.3",
"isomorphic-fetch": "2.2.1",
"jest-cli": "22.1.4",
"lint-staged": "4.0.4",
"nps": "5.7.1",
"nps-utils": "1.5.0",
"opt-cli": "1.5.2",
"prettier": "1.10.2",
"prop-types": "15.6.0",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-fela": "5.2.1",
"react-test-renderer": "16.4.2",
"rimraf": "2.6.2",
"rollup": "0.55.1",
"rollup-plugin-babel": "3.0.2",
"rollup-plugin-commonjs": "8.2.0",
"rollup-plugin-json": "2.3.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-replace": "1.1.1",
"rollup-plugin-uglify": "3.0.0",
"styled-components": "2.1.2",
"svg-tag-names": "1.1.1",
"whatwg-fetch": "2.0.3"
},
"dependencies": {
"date-fns": "2.0.0-alpha.1",
"debounce": "1.1.0",
"pomeranian-durations": "0.2.0",
"recompose": "0.26.0"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
],
"yarn.lock": [
"git rm --cached"
]
},
"jest": {
"testEnvironment": "jsdom",
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js"
],
"collectCoverage": true,
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"bundlesize": [
{
"path": "./dist/okami.*.js"
}
]
}