-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
84 lines (84 loc) · 2.72 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": "react-countdown",
"version": "2.3.6",
"description": "A customizable countdown component for React.",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ndresx/react-countdown.git"
},
"author": "Martin Veith",
"license": "MIT",
"bugs": {
"url": "https://github.com/ndresx/react-countdown/issues"
},
"homepage": "https://github.com/ndresx/react-countdown",
"keywords": [
"react",
"typescript",
"countdown",
"component"
],
"scripts": {
"build": "yarn build:clean && yarn rollup --config",
"build:clean": "rm -rf ./dist && yarn test:e2e:clean && mkdir dist",
"build:watch": "yarn build --watch",
"clean": "rm -rf ./node_modules && rm -rf ./coverage && yarn build:clean",
"lint": "yarn lint:prettier && yarn lint:tslint && yarn lint:tsc",
"lint:prettier": "yarn prettier-check",
"lint:tslint": "tslint --config tslint.json --project tsconfig.json ./src/**/*.{ts,tsx}",
"lint:tsc": "tsc --noEmit",
"prettier-check": "prettier --list-different ./src/**/*.{ts,tsx}",
"prettier": "prettier --write ./src/**/*.{ts,tsx}",
"test": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "yarn start-server-and-test test:e2e:server http://localhost:1234 \"cypress run\"",
"test:e2e:clean": "rm -rf ./e2e/dist",
"test:e2e:dev": "yarn start-server-and-test test:e2e:server http://localhost:1234 \"cypress open\"",
"test:e2e:server": "yarn build && parcel ./e2e/index.html --out-dir ./e2e/dist",
"test:watch": "jest --watch"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/enzyme-to-json": "^1.5.3",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"coveralls": "^3.0.4",
"cypress": "^5.3.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^1.14.6",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-typescript2": "^0.21.1",
"start-server-and-test": "^1.11.5",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
},
"peerDependencies": {
"react": ">= 15",
"react-dom": ">= 15"
}
}