-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "as-type",
"version": "2.0.0",
"description": "Convert undetermined data types to the type you want",
"keywords": [
"type",
"cast",
"caster",
"casting",
"typecast"
],
"homepage": "https://github.com/shnhrrsn/as-type#readme",
"repository": {
"type": "git",
"url": "https://github.com/shnhrrsn/as-type.git"
},
"license": "MIT",
"author": {
"name": "Shaun Harrison",
"url": "https://github.com/shnhrrsn"
},
"main": "lib/index.js",
"scripts": {
"build": "rm -fr lib && tsc",
"commit": "git-cz",
"prepack": "yarn build",
"release": "standard-version",
"test": "ts-node node_modules/ava/cli.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.0",
"ava": "^3.13.0",
"commitizen": "^4.2.2",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"prettier-plugin-packagejson": "^2.2.6",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}