-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
{
"name": "c2-react-picklist",
"version": "1.3.0",
"description": "A bootstrap v4 dual paned picklist react component",
"main": "dist/index.js",
"scripts": {
"start": "cd example && webpack-dev-server --content-base dist --port 8083 --hot --env.mode development",
"build": "babel -d dist/ src/",
"build:watch": "babel -w -d dist/ src/",
"build:docs": "rm -rf docs/*.js && rm -rf docs/*.css && cd example && NODE_ENV=production webpack --env.mode production",
"test": "NODE_ENV=test mocha --require jsdom-global/register --require @babel/register --require ./test/test-helper.js --require ./test/null-compiler.js",
"test:watch": "npm run test -- --watch",
"test:report": "nyc --reporter=html yarn test",
"cm": "git-cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branch": "master",
"extends": "c2-semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "eslint",
"test/**/*.js": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClearC2/c2-react-picklist.git"
},
"keywords": [
"react",
"package",
"template"
],
"author": "Clear C2, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/ClearC2/c2-react-picklist/issues"
},
"homepage": "https://github.com/ClearC2/c2-react-picklist#readme",
"devDependencies": {
"@clearc2/c2-react-config": "^3.1.0",
"@hot-loader/react-dom": "^16.2.0",
"@reactions/component": "^2.0.2",
"babel-plugin-module-resolver": "^3.2.0",
"c2-semantic-release": "ClearC2/c2-semantic-release#^1.0.0",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint-config-c2-react": "^1.3.0",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-testing-library": "^4.1.5"
},
"peerDependencies": {
"bootstrap": "^4.0.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"dependencies": {}
}