-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
{
"name": "react-pikaday",
"version": "0.5.0",
"description": "A React component wrapper around Pikaday.",
"main": "lib/Pikaday.js",
"scripts": {
"test": "karma start --single-run --browsers Firefox",
"build-example": "webpack",
"build": "rimraf lib && babel src --out-dir lib --ignore *.spec.js",
"lint": "eslint src/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "http://github.com/thomasboyt/react-pikaday.git"
},
"dependencies": {
"pikaday": "^1.2.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-rc.1"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.11.0",
"chai": "^1.9.1",
"css-loader": "^0.23.1",
"eslint": "^3.2.2",
"eslint-plugin-react": "^6.0.0",
"expect": "^1.14.0",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^1.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"react": "^15.0.0",
"react-addons-linked-state-mixin": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"rimraf": "^2.5.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"author": "Thomas Boyt <me@thomasboyt.com>",
"license": "MIT"
}