-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-flexible-progressbar",
"version": "1.0.5",
"description": "Progress bar with customisable styles",
"main": "dist/ProgressBar.js",
"browserslist": "last 2 versions",
"scripts": {
"tsc": "tsc -d",
"sass": "node-sass --output-style=compressed src/progressBar.scss > dist/progressBar.css",
"lint": "tslint -p .",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"start": "webpack-dev-server --progress",
"build": "webpack -p --progress",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy",
"release": "npm run lint && npm run test && npm run tsc && npm run sass",
"prepublishOnly": "npm run tsc && npm run sass"
},
"keywords": [
"React",
"progressbar"
],
"author": "Alexander Yamkov",
"license": "MIT",
"homepage": "https://github.com/loopline-systems/react-flexible-progressbar",
"repository": {
"type": "git",
"url": "https://github.com/loopline-systems/react-flexible-progressbar.git"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"coveralls": "^3.0.3",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"enzyme-to-json": "^3.3.5",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"ts-loader": "^5.4.5",
"tslint": "^5.17.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.1"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
".scss$": "../test/SassStub.ts"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"collectCoverage": true,
"coverageDirectory": "dist/coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
]
},
"dependencies": {}
}