-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 KB
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
{
"name": "xerxes-react-pagination",
"version": "0.0.1",
"description": "react pagination ",
"main": "./lib/index.js",
"scripts": {
"test": "jest --watch",
"start": "cross-env NODE_ENV=development parcel examples/index.html --open ",
"build": "cross-env NODE_ENV=production parcel build src/index.js --out-dir ./lib --no-source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hip-Hop-II/xerxes-react-pagination.git"
},
"keywords": [
"react",
"pagination",
"simple"
],
"author": "xcxerxes",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hip-Hop-II/xerxes-react-pagination/issues"
},
"homepage": "https://github.com/Hip-Hop-II/xerxes-react-pagination#readme",
"devDependencies": {
"autoprefixer": "^9.0.2",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.4.2",
"parcel-bundler": "^1.9.7",
"postcss-modules": "^1.3.2"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 10"
],
"jest": {
"setupTestFrameworkScriptFile": "./jest/setupTests.js",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "./node_modules/babel-jest",
"^.+\\.css$": "./jest/cssTransform.js"
}
}
}