-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 2.17 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
{
"name": "is-number-strict",
"version": "1.0.9",
"description": "Tiny lib to check if passed argument is strictly number. Strings will not pass!",
"main": "./dist/index.min.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"devDependencies": {
"@types/jasmine": "^3.10.3",
"commitizen": "^4.2.4",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jasmine": "^3.99.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.5.3",
"prettier": "^1.19.1",
"puppeteer": "^1.20.0",
"tslint": "^5.20.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3",
"uglifyjs": "^2.4.11"
},
"scripts": {
"test": "karma start",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'tests/**/*.spec.ts'",
"prettier": "prettier --config .prettierrc.json --write src/**/*.ts",
"commit": "git-cz",
"doc": "typedoc src/index.ts --out dist/docs --readme ./README.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build": "tsc --p ./ --sourceMap false",
"bundle": "uglifyjs ./dist/*.js --compress --mangle --output ./dist/index.min.js",
"precommit": "npm run prettier && npm run lint",
"prepush": "call npm run test",
"preversion": "npm run test",
"version": "call npm run clean && call npm run build && npm run bundle && call npm run doc && call npm run changelog && git add . && git commit -m 'changelogupdate' --no-verify",
"postversion": "git add . && git push --no-verify && git push --tags --no-verify",
"clean": "rmdir dist /S /Q",
"start": "karma start --single-run false --auto-watch true"
},
"keywords": [
"number",
"typecheck",
"typeof",
"types",
"NaN"
],
"author": "Drag13",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}