-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
95 lines (95 loc) · 2.65 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
90
91
92
93
94
95
{
"name": "anchor-ui",
"version": "4.5.2",
"description": "React Component UI Kit",
"main": "dist/index.js",
"files": [
"/*"
],
"scripts": {
"test": "NODE_ENV=test nyc mocha --opts ./mocha.opts test/*",
"test:watch": "NODE_ENV=test mocha --watch -opts ./mocha.opts test/*",
"watch": "babel -d dist/ -w src/",
"compile": "rimraf 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",
"emojione": "node parse-emoji.js > src/emoji-menu/emoji.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"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.26.0",
"babel-eslint": "^8.0.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",
"codecov": "^3.0.0",
"enzyme": "^2.7.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.2.0",
"nyc": "^11.3.0",
"prettier": "^1.7.4",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-docgen": "^2.19.0",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.2",
"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": "^3.0.3",
"escape-html": "^1.0.3",
"html-react-parser": "^0.3.4",
"lodash": "^4.17.4",
"mobile-detect": "^1.3.6",
"radium": "^0.19.0",
"react-event-listener": "^0.4.5",
"react-onclickoutside": "^6.6.3",
"recompose": "^0.22.0",
"tlds": "^1.182.0"
}
}