-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "savethedate",
"version": "0.2.0",
"description": "Primitives for extensible React datepicker components",
"main": "lib/index.js",
"repository": "https://github.com/frontsideair/savethedate",
"author": "Fatih Altinok",
"license": "MIT",
"homepage": "https://github.com/frontsideair/savethedate",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"prepublish": "yarn build",
"flow": "flow",
"lint": "eslint *.js"
},
"dependencies": {
"date-fns": "^1.29.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.46.2",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.69.0",
"nwb": "0.21.x",
"prettier": "^1.12.0",
"react": "^16.3.1",
"react-dom": "^16.3.1"
},
"peerDependencies": {
"react": "16.x"
},
"keywords": [
"react-component",
"react",
"component",
"datepicker"
]
}