-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "mdsearchbox",
"version": "0.0.7",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --inline --hot --port 3000",
"compile": "npm-run-all --parallel compile:source compile:postcss",
"compile:postcss": "postcss --use precss --use postcss-cssnext -d lib src/*.css",
"compile:source": "babel src --out-dir lib",
"prepublish": "npm-run-all clean compile",
"lint": "eslint src test --ext .js,.jsx",
"clean": "rimraf lib dist",
"test:watch": "mocha --watch",
"test": "mocha"
},
"keywords": [],
"author": "zhenghe",
"license": "MIT",
"config": {
"ghooks": {
"pre-commit": "npm run prepublish"
}
},
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.10.4",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-module-alias": "1.5.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.5.0",
"css-loader": "0.23.1",
"enzyme": "2.4.1",
"eslint": "3.2.0",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.12.0",
"eslint-plugin-jsx-a11y": "2.0.1",
"eslint-plugin-react": "5.2.2",
"expect": "1.20.2",
"expect-jsx": "2.6.0",
"file-loader": "0.9.0",
"ghooks": "1.3.2",
"ignore-styles": "4.0.0",
"jsdom": "9.4.1",
"mocha": "2.5.3",
"npm-run-all": "2.3.0",
"postcss": "5.1.0",
"postcss-cli": "2.5.2",
"postcss-cssnext": "2.7.0",
"postcss-loader": "0.9.1",
"precss": "1.4.0",
"react-addons-test-utils": "15.2.1",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"font-awesome": "4.6.3"
}
}