forked from imballinst/react-bs-datatable
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·77 lines (77 loc) · 2.57 KB
/
package.json
File metadata and controls
executable file
·77 lines (77 loc) · 2.57 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-bs-datatable",
"version": "1.1.18",
"description": "React Bootstrap Datatable (without jQuery) with sorting, filter, and pagination",
"main": "dist/react-bs-datatable.min.js",
"scripts": {
"jest:watch": "jest --watch",
"eslint": "./node_modules/.bin/eslint --fix ./src/.",
"build": "npm test && webpack && git add -A",
"analyze": "webpack --json | webpack-bundle-size-analyzer",
"release:major":
"changelog -M && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version major && git push origin && git push origin --tags",
"release:minor":
"changelog -m && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version minor && git push origin && git push origin --tags",
"release:patch":
"changelog -p && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version patch && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Imballinst/react-bs-datatable.git"
},
"keywords": ["react", "bootstrap", "react-bootstrap", "datatable"],
"jest": {
"roots": ["tests"],
"setupFiles": ["./tests/jestsetup.js"],
"snapshotSerializers": ["<rootDir>/node_modules/enzyme-to-json/serializer"],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
}
},
"author": "Try Ajitiono",
"license": "MIT",
"bugs": {
"url": "https://github.com/Imballinst/react-bs-datatable/issues"
},
"homepage": "https://github.com/Imballinst/react-bs-datatable#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.2",
"generate-changelog": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.0",
"node-sass": "^4.6.1",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"sass-loader": "^6.0.6",
"sinon": "^2.2.0",
"style-loader": "^0.19.0",
"webpack": "^2.5.1"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.4",
"prop-types": "^15.5.8",
"prop-types-extra": "^1.0.1",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4"
}
}