-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "react-tag-box",
"version": "1.5.0",
"description": "A tagging component in React. Select, create, and delete tags.",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors -w",
"spec": "mocha './spec/**/*.spec.js*' --compilers js:babel-register --recursive",
"lint": "eslint ./src/** ./spec/**/* --ext=js,jsx --fix",
"compile": "babel -d ./lib/ ./src/",
"test": "npm run lint && npm run spec",
"build-example": "webpack ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sslotsky/react-tag-box.git"
},
"keywords": [
"react",
"tags",
"tagging"
],
"author": "Sam Slotsky",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"enzyme-adapter-react-16": "^1.1.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^0.14.8 || ^15.1.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-module-resolver": "^2.2.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"browser-sync": "^2.14.0",
"browser-sync-webpack-plugin": "^1.1.2",
"css-loader": "^0.25.0",
"enzyme": "^3.2.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-import-resolver-babel-module": "^2.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"expect": "^1.20.2",
"immutable": "^3.8.1",
"mocha": "^3.1.2",
"node-sass": "^4.7.2",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-codemirror": "^1.0.0",
"react-dom": "^16.2.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}