-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.13 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": "pure-number-generator",
"version": "2.0.0",
"description": "Purely functional pseudorandom number generation",
"repository": "https://github.com/TylorS/pure-number-generator",
"license": "MIT",
"author": "Tylor Steinberger <tlsteinberger167@gmail.com>",
"contributors": [
"Frederik Krautwald <fkrautwald@gmail.com>"
],
"main": "lib/index.js",
"module": "lib.es2015/index.js",
"jsnext:main": "lib.es2015/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"build": "npm run build:commonjs && npm run build:es2015",
"build:commonjs": "tsc -P .config/tsconfig.commonjs.json",
"build:es2015": "tsc -P .config/tsconfig.es2015.json",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 -p angular",
"postchangelog": "git add CHANGELOG.md && git commit -m 'docs(CHANGELOG): amend changelog'",
"cleanup": "rimraf lib lib.es2015",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"release:major": "npm version major -m 'chore(package): v%s'",
"release:minor": "npm version minor -m 'chore(package): v%s'",
"fix-ts": "eslint --fix './src/*.ts'",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint './src/*.ts'",
"test:unit": "typed-test 'src/**/*.__test__.ts'",
"preversion": "npm run test && npm run build",
"postversion": "npm run changelog && git push origin master --tags && npm publish"
},
"dependencies": {
"167": "^0.43.0"
},
"devDependencies": {
"@typed/test": "^9.5.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"commitizen": "^4.2.1",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"glob-expand": "^0.2.1",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.3",
"validate-commit-message": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run fix-ts && npm run test:unit",
"pre-push": "npm run test"
}
}
}