-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 2.3 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
{
"name": "violet-paginator",
"version": "2.0.5",
"description": "Display, paginate, sort, filter, and update items from the server. violet-paginator is a complete list management library for react/redux applications.",
"main": "lib/index.js",
"scripts": {
"spec": "mocha './spec/**/*.spec.js*' --compilers js:babel-register --recursive",
"spec-coverage": "nyc --require babel-core/register mocha --recursive './spec/**/*.spec.js*'",
"lint": "eslint ./src/** ./spec/**/* --ext=js,jsx",
"test": "npm run lint && npm run spec-coverage",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sslotsky/violet-paginator.git"
},
"keywords": [
"react",
"redux",
"pagination",
"paginate",
"paginator",
"list management",
"filter",
"sort",
"violet"
],
"nyc": {
"extension": [
".jsx"
],
"exclude": [
"examples",
"build"
],
"reporter": [
"lcov",
"text-summary"
]
},
"author": "Sam Slotsky",
"license": "MIT",
"dependencies": {
"babel-regenerator-runtime": "^6.5.0",
"classnames": "^2.2.5",
"react-fontawesome": "^1.1.0",
"redux-resolver": "^1.0.2",
"uuid": "^3.0.1"
},
"peerDependencies": {
"immutable": "^3.7.6",
"react": "^0.14.8 || ^15.1.0",
"react-redux": "^4.4.4 || 5.x",
"redux": "^3.4.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.13.2",
"babel-eslint": "6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"enzyme": "^2.4.1",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.0",
"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.7.6",
"istanbul": "^0.4.5",
"jsdom": "^9.8.3",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"promise-mock": "^1.1.0",
"react": "^15.1.0",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"redux-mock-store": "^1.1.4",
"redux-thunk": "^2.1.0",
"webpack": "^1.13.1"
}
}