-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "react-tokeninput",
"version": "2.5.0",
"description": "Tokeninput component for React",
"main": "lib/index.js",
"scripts": {
"prepublish": "babel src -d lib && npm run build",
"build": "NODE_ENV=production webpack --config webpack.dist.config.js",
"test": "node_modules/.bin/karma start",
"dev": "webpack --watch --config example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/instructure/react-tokeninput.git"
},
"author": "Aaron Shafovaloff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/instructure/react-tokeninput/issues"
},
"homepage": "https://github.com/instructure/react-tokeninput",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"chai": "^1.10.0",
"eslint": "^1.10.1",
"jsx-loader": "^0.13.2",
"karma": "^0.13.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.2.3",
"karma-mocha": "^0.2.0",
"karma-webpack": "^1.3.1",
"lodash-node": "^2.4.1",
"mocha": "^2.0.1",
"react": "^16",
"react-dom": "^16",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"dependencies": {
"classnames": "^2.2.1",
"prop-types": "^15"
}
}