-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
89 lines (89 loc) · 3.05 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
{
"name": "dayspan",
"version": "1.1.0",
"description": "A date & schedule library to use for advanced calendars in TypeScript and JS",
"main": "dist/dayspan.js",
"typings": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://www.github.com/ClickerMonkey/dayspan"
},
"authors": [
"Philip Diffenderfer <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">=6.9"
},
"scripts": {
"start": "webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --content-base src/ --mode development",
"build": "webpack --config webpack.config.js --mode production",
"build.prod": "webpack --config webpack.config.js -p",
"cleanup": "shx rm -rf umd lib lib-esm lib-fesm typings coverage ../iteratez-pages/docs",
"prebuild": "npm run cleanup && npm run verify",
"docs": "typedoc -p . --readme README.md --theme minimal --mode file --target 'es5' --excludeNotExported --excludePrivate --ignoreCompilerErrors --exclude \"**/src/**/__tests__/*.*\" --out ../dayspan-pages/docs src/ && cp -R examples ../dayspan-pages/ && cp -R umd ../dayspan-pages/ && cp -R node_modules/moment/min ../dayspan-pages/node_modules/moment/",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"test:only-changed": "npm test -- --bail --onlyChanged",
"verify": "npm test",
"cz": "git-cz",
"release:npm": "npm publish",
"release:preflight": "irish-pub",
"release:preflight:package": "npm pack",
"size": "shx echo \"Gzipped Size:\" && cross-var strip-json-comments --no-whitespace $npm_package_main | gzip-size"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"maxSubjectLength": 120
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run prettier:ts -- --write",
"ts:lint:fix",
"git add"
]
},
"devDependencies": {
"@types/jest": "24.0.11",
"@types/node": "11.13.4",
"awesome-typescript-loader": "5.2.1",
"commitizen": "3.0.7",
"cross-var": "1.1.0",
"cz-conventional-changelog": "2.1.0",
"gzip-size-cli": "3.0.0",
"irish-pub": "0.2.0",
"jest": "24.7.1",
"jest-cli": "24.7.1",
"lint-staged": "8.1.5",
"prettier": "1.17.0",
"shx": "0.3.2",
"source-map-loader": "0.2.4",
"standard-version": "5.0.2",
"strip-json-comments-cli": "1.0.1",
"ts-jest": "24.0.2",
"tslint": "5.16.0",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "8.0.1",
"tslint-loader": "3.5.4",
"tslint-react": "4.0.0",
"typedoc": "0.14.2",
"typescript": "3.4.3",
"uglify-js": "3.5.4",
"uglifyjs-webpack-plugin": "2.1.2",
"validate-commit-msg": "2.14.0",
"webpack": "4.30.0",
"webpack-cli": "3.3.0",
"webpack-config-utils": "2.3.1",
"webpack-dev-server": "3.1.4"
},
"dependencies": {
"iteratez": "1.2.2"
}
}