-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
89 lines (89 loc) · 2.44 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "anchor-ui",
"version": "3.7.0",
"description": "React Component UI Kit",
"main": "dist/index.js",
"files": [
"/*"
],
"scripts": {
"test": "NODE_ENV=test nyc mocha --compilers js:babel-core/register test/*",
"test:watch": "NODE_ENV=test mocha --watch --compilers js:babel-core/register test/*",
"watch": "babel -d dist/ -w src/",
"compile": "rm -rf dist && babel -d dist/ src/",
"lint": "eslint '{src,docs/src,test}/**/**/*.{js,jsx}'",
"copy": "cp -rf package.json README.md dist",
"build": "npm run compile && npm run copy",
"dist": "cd dist && npm publish",
"docs": "react-docgen components --out docs/components.json --pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anchorchat/anchor-ui.git"
},
"keywords": [
"react"
],
"author": "Sjaak Luthart <[email protected]>",
"contributors": [
"Ian Stewart <[email protected]>",
"Lars Tadema <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anchorchat/anchor-ui/issues"
},
"homepage": "https://github.com/anchorchat/anchor-ui#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"enzyme": "^2.7.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-docgen": "^2.14.0",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.5.4",
"sinon": "^1.17.7",
"sinon-chai": "^2.9.0"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"peerDependencies": {
"prop-types": "^15.4.1",
"react": "^15.4.1"
},
"dependencies": {
"color": "^1.0.3",
"date-fns": "^1.27.2",
"emojione": "^2.2.7",
"escape-html": "^1.0.3",
"lodash": "^4.17.4",
"radium": "^0.19.0",
"react-event-listener": "^0.4.5",
"react-measure": "^1.4.5",
"react-onclickoutside": "^6.1.1",
"recompose": "^0.22.0",
"tlds": "^1.182.0"
}
}