-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.85 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
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
91
92
93
94
95
96
97
98
99
100
{
"name": "lls-rc-pagination",
"version": "1.1.1",
"description": "Pagination with customisable styles",
"main": "dist/Pagination.js",
"browserslist": "last 2 versions",
"scripts": {
"tsc": "tsc -d",
"sass": "node-sass --output-style=compressed src/pagination.scss > dist/pagination.css",
"lint": "tslint -p .",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
"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",
"pagination"
],
"author": "Alexander Yamkov",
"license": "MIT",
"homepage": "https://github.com/loopline-systems/lls-rc-pagination",
"repository": {
"type": "git",
"url": "https://github.com/loopline-systems/lls-rc-pagination.git"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"query-string": "^6.4.2"
},
"devDependencies": {
"@types/enzyme": "^3.9.2",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/query-string": "6.3.0",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.3",
"coveralls": "^3.0.3",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"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",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.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": {}
}