This repository has been archived by the owner on May 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.23 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
{
"name": "@fdmg/ts-react-progress-bar",
"version": "1.0.8",
"description": "ReactJS ProgressBar component",
"main": "dist/ProgressBar.js",
"types": "dist/ProgressBar.d.ts",
"scripts": {
"lint": "tslint -p .",
"release": "npm update && npm install && yarn && npm run test && npm run lint && npm run sass && npm run tsc",
"sass": "node-sass --output-style=compressed scss/ProgressBar.scss > dist/ProgressBar.css",
"test": "jest",
"tsc": "tsc -d",
"u": "npm test -- -u",
"updateSnapshot": "jest --updateSnapshot",
"webpack-demo": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "[email protected]:FDMediagroep/fdmg-ts-react-progress-bar.git"
},
"publishConfig": {
"access": "public"
},
"author": "Willem Liu, Alexander Eerenberg",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/react": "^16.7.17",
"awesome-typescript-loader": "^5.2.1",
"coveralls": "^3.0.2",
"css-loader": "^2.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.0",
"jest": "^22.4.4",
"jest-cli": "^23.6.0",
"jest-localstorage-mock": "^2.3.0",
"node-sass": "^4.11.0",
"preact": "^8.4.2",
"preact-compat": "^3.18.4",
"raf": "^3.4.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-jest": "24.0.0",
"tslint": "^5.11.0",
"tslint-react": "^4.0.0",
"typescript": "^2.9.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"setupFiles": [
"raf/polyfill",
"jest-localstorage-mock"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"collectCoverage": true,
"coverageDirectory": "dist/coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
]
},
"dependencies": {}
}