-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
{
"name": "c2-routable-tabs",
"version": "0.2.0",
"description": "Routable bootstrap tabs",
"main": "lib/index.js",
"scripts": {
"start": "cd example && webpack-dev-server --inline --content-base dist --history-api-fallback --port 8083 --mode development",
"compile": "babel -d lib/ src/",
"build:docs": "rm -rf docs/*.js && rm -rf docs/*.css && cd example && NODE_ENV=production webpack --mode production",
"test": "nyc mocha --require babel-core/register ./test/null-compiler.js ./test/test-helper.js ./test/**/*-test.js -c",
"test:watch": "npm run test -- --watch",
"test:report": "nyc --reporter=html npm test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClearC2/c2-routable-tabs.git"
},
"keywords": [
"react",
"routable",
"tabs"
],
"author": "Clear C2, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/ClearC2/c2-routable-tabs/issues"
},
"homepage": "https://github.com/ClearC2/c2-routable-tabs#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.18",
"dirty-chai": "^2.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-c2-react": "^1.2.0",
"html-webpack-plugin": "^3.0.4",
"jsdom": "^11.6.2",
"jsdom-global": "^3.0.2",
"mocha": "^5.0.5",
"mocha-junit-reporter": "^1.17.0",
"nyc": "^11.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"react-router-dom": "^4.2.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"peerDependencies": {
"bootstrap": "^4.0.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"react-router-dom": "^4.0.0"
},
"dependencies": {
"prop-types": "^15.6.1"
}
}