-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mdmap",
"version": "0.0.1",
"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 .jsx,.js",
"clean": "rimraf lib dist",
"test:watch": "mocha --watch",
"test": "mocha"
},
"keywords": [],
"author": "Caiyao Mai",
"license": "MIT",
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run clean"
}
},
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-module-alias": "^1.6.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"expect": "^1.20.2",
"expect-jsx": "^2.6.0",
"file-loader": "^0.9.0",
"ghooks": "^1.3.2",
"ignore-styles": "^5.0.1",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"npm-run-all": "^3.1.0",
"postcss": "^5.1.2",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "^0.11.1",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.3.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1"
}
}