forked from ntdb/react-weekday-picker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "react-weekday-picker",
"version": "1.0.9",
"description": "Customizable weekday picker component for React.js",
"main": "./lib/WeekdayPicker.js",
"scripts": {
"prepublish": "./node_modules/.bin/babel ./src -d ./lib --source-maps",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register --recursive --reporter spec",
"test:lint": "./node_modules/eslint/bin/eslint.js ./src",
"test:watch": "npm test -- --watch",
"test:travis": "npm run test && npm run test:lint"
},
"repository": {
"type": "git",
"url": "https://github.com/ntdb/react-weekday-picker.git"
},
"keywords": [
"react",
"react-component",
"component",
"calendar",
"date-picker",
"datepicker",
"date",
"picker",
"moment",
"momentjs"
],
"author": "Nate Bailey",
"license": "MIT",
"bugs": {
"url": "https://github.com/ntdb/react-weekday-picker/issues"
},
"homepage": "https://github.com/ntdb/react-weekday-picker",
"peerDependencies": {
"react": ">=0.14.8"
},
"devDependencies": {
"babel": "^5.6.4",
"babel-eslint": "^7.1.0",
"chai": "^3.4.1",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"mocha": "^2.2.5",
"react": "^0.14.2",
"react-addons-test-utils": "^0.14.2",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"testdom": "^2.0.0"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}