This repository was archived by the owner on Jun 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "bootstrap-table-react",
"version": "1.2.1",
"description": "Simple bootstrap table in react",
"main": "lib/Table.js",
"scripts": {
"build": "babel src --out-dir lib",
"dev": "npm test -- --watch",
"lint": "eslint src test",
"prepublish": "npm run build",
"test": "NODE_ENV=test mocha --compilers js:babel-register --compilers jsx:babel-register --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/staticdeploy/bootstrap-table-react.git"
},
"bugs": {
"url": "https://github.com/staticdeploy/bootstrap-table-react/issues"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"eslint": "3.5.0",
"eslint-config-staticdeploy": "^2.0.1",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"ramda": "^0.22.1",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"change-case": "^3.0.0",
"classnames": "^2.2.5"
},
"peerDependencies": {
"bootstrap": "^3.3.6",
"react": "^0.14.3",
"react-dom": "^0.14.3"
}
}