-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.97 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
67
68
69
{
"name": "instant2fa-component",
"version": "1.0.3",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cd example && 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": "Jesse Pollak",
"license": "MIT",
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run clean"
}
},
"peerDependencies": {
"react": "15.x || ^0.14.0",
"react-dom": "15.x || ^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-module-alias": "^1.6.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.26.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"eslint-plugin-react": "^6.7.1",
"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.8.3",
"mocha": "^3.1.2",
"npm-run-all": "^3.1.1",
"postcss": "^5.2.5",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "^1.1.1",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.4.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"hoist-non-react-statics": "^1.2.0"
}
}