-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "react-tribute",
"version": "1.0.4",
"description": "React component for mentioning using Zurb's Tribute library",
"main": "dist/index.js",
"scripts": {
"run": "babel src -d dist && npm run build:example",
"build:example": "webpack",
"//": "you can also run `npm run test -- -w` to watch",
"test": "mocha --require test/config.js --recursive test/spec",
"dev:hot": "webpack-dev-server --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base ./example"
},
"author": "Ivan Montiel <[email protected]> (https://github.com/imontiel)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bolste/react-tribute.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.0",
"deep-equal": "^1.0.1",
"enzyme": "^2.6.0",
"faker": "^3.1.0",
"jsdom": "8.2.0",
"mocha": "^3.1.2",
"react": "^15.0.0",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.0.0",
"react-textarea-autosize": "^4.0.5",
"tributejs": "^2.2.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"peerDependencies": {
"deep-equal": "^1.0.1",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"tributejs": "^2.1.0"
}
}