-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "hootsuite-react",
"version": "0.0.4",
"description": "Hootsuite Deisgn components build with React",
"main": "lib/index.js",
"keywords": [
"react",
"react-component",
"hootsuite",
"form"
],
"repository": {
"type": "git",
"url": "https://github.com/BclEx/hootsuite-react"
},
"scripts": {
"test": "npm-run-all test:jest",
"test:jest": "jest",
"prepublish": "npm run build",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "eslint --fix --ext .js src/**",
"lint:test": "eslint --fix --ext .js test/**",
"build": "babel -d lib/ src/"
},
"files": [
"lib"
],
"author": "Sky Morey <smorey@degdigital.com>",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"keycoder": "^1.1.1",
"lodash": "^4.17.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^22.0.3",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.3",
"npm-run-all": "^4.1.2",
"power-assert": "^1.4.4",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"jest": {
"testRegex": "(/test/.*|\\.(test|spec))\\.js$",
"collectCoverage": true
}
}