-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "arc-dropdown",
"version": "1.0.6",
"description": "Accessible react dropdown",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"start": "NODE_ENV=development webpack-dev-server --hot --history-api-fallback",
"prebuild": "npm run clean",
"build": "NODE_ENV=production babel src --out-dir dist",
"test": "ava"
},
"author": "Bhargav Ponnapalli",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"keycode": "^2.1.8"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"dotenv": "^2.0.0",
"enzyme": "^2.7.1",
"eslint": "^3.9.1",
"eslint-plugin-react": "^6.6.0",
"html-webpack-plugin": "^2.28.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"read-pkg": "^2.0.0",
"rimraf": "^2.5.4",
"webpack": "2.1.0-beta.27",
"webpack-dev-server": "2.1.0-beta.11"
},
"ava": {
"source": [
"**/*.{js,jsx}",
"!dist/**/*"
],
"require": [
"babel-register"
],
"verbose": true,
"babel": "inherit"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0"
}
}