-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.41 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
{
"name": "simple-ts-date-picker",
"version": "1.1.1",
"description": "An simple best extensible typescript react datepicker",
"keywords": ["simple", "date", "picker", "date-picker", "datepicker", "react", "typescript"],
"license": "MIT",
"main": "dist/simple_datepicker.js",
"module": "dist/simple_datepicker.es6.js",
"types": "dist/simple_datepicker.d.ts",
"files": ["dist"],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/DJWassink/SimpleTsDatePicker.git"
},
"author": "Dirk-Jan Wassink <dirk.jan.wassink@gmail.com> (http://dirkjanwassink.nl)",
"bugs": {
"url": "https://github.com/DJWassink/SimpleTsDatePicker/issues"
},
"homepage": "https://github.com/DJWassink/SimpleTsDatePicker#readme",
"scripts": {
"precommit": "yarn lint-staged",
"prepublish": "yarn build",
"prebuild": "yarn rimraf dist",
"build":
"yarn tsc -p tsconfig.json && yarn copy ./src/**/*.sass ./compiled && yarn cross-env NODE_ENV=production rollup -c && yarn rimraf compiled",
"watch": "rollup -cw",
"start": "rollup -cw",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "tslint -p ./tsconfig.json --fix",
"prettier": "prettier --write \"src/**/*.ts*\""
},
"lint-staged": {
"*.{ts,js}": ["prettier --write", "tslint -c ./tslint.json", "git add"]
},
"dependencies": {},
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"@types/react": "latest",
"@types/react-dom": "latest",
"autoprefixer": "^8.0.0",
"copy": "^0.3.1",
"cross-env": "^5.1.4",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"node-sass": "^4.8.3",
"prettier": "^1.11.1",
"react-dom": "16",
"rimraf": "^2.6.2",
"rollup": "latest",
"rollup-plugin-commonjs": "latest",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.4.1",
"rollup-plugin-replace": "latest",
"rollup-plugin-sass": "^0.6.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "latest",
"tslint": "latest",
"tslint-config-prettier": "^1.10.0",
"tslint-eslint-rules": "^5.1.0",
"typescript": "latest"
}
}