-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
96 lines (96 loc) · 2.75 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
90
91
92
93
94
95
96
{
"name": "simplytyped",
"version": "1.1.0",
"description": "yet another Typescript type library for advanced types",
"main": "dist/src/index",
"types": "dist/src/index.d.ts",
"deno": "edition-deno/index.ts",
"browser": "edition-deno/index.ts",
"private": true,
"editions": [
{
"description": "TypeScript source code with Import for modules",
"directory": "src",
"entry": "index.ts",
"tags": [
"typescript",
"import"
],
"engines": false
},
{
"description": "TypeScript source code made to be compatible with Deno",
"directory": "edition-deno",
"entry": "index.ts",
"tags": [
"typescript",
"import",
"deno"
],
"engines": {
"deno": true,
"browsers": true
}
}
],
"scripts": {
"doc": "ts-node scripts/generateDocumentation.ts > README.md",
"commitDocs": "sh scripts/commitDocsIfChanged.sh",
"lint": "tslint --config tslint.json --project . --format stylish",
"test": "npm run -s tsc && NODE_PATH=src/ ava",
"test:all": "sh scripts/testTsVersions.sh",
"tsc": "tsc",
"prepub": "rm -rf dist && npm -s run tsc && ts-node scripts/preparePublish.ts && make-deno-edition",
"release": "npm run -s prepub && cd dist/src && npx semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andnp/SimplyTyped.git"
},
"keywords": [
"typescript",
"types"
],
"author": "Andy Patterson",
"license": "MIT",
"bugs": {
"url": "https://github.com/andnp/SimplyTyped/issues"
},
"files": [
"dist/src",
"edition-deno"
],
"homepage": "https://github.com/andnp/SimplyTyped#readme",
"peerDependencies": {
"typescript": ">=2.8.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.0.0",
"@types/node": "~13.9.0",
"@ava/babel": "^1.0.1",
"ava": "~3.7.1",
"commitlint": "^8.0.0",
"husky": "^4.0.2",
"make-deno-edition": "^0.2.1",
"ts-node": "^8.0.3",
"tslint": "^5.13.0"
},
"ava": {
"files": [
"dist/test/**/*.test.js"
],
"concurrency": 32,
"babel": {}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-push": "npm run -s lint && npm run -s test && npm run -s commitDocs"
}
}
}