-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.56 KB
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
{
"name": "@intradoc/core",
"version": "0.0.0-development",
"description": "Core package of @intradoc.",
"author": "Richard King <richrdkng@gmail.com> (https://richrdkng.com)",
"license": "MIT",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intradoc/core.git"
},
"bugs": {
"url": "https://github.com/intradoc/core/issues"
},
"homepage": "https://github.com/intradoc/core#readme",
"keywords": [
"intradoc",
"core",
"update",
"doc",
"docs",
"inplace",
"in-place",
"in place",
"util",
"utils"
],
"scripts": {
"lint": "tsc --noEmit && ts-standard --verbose | snazzy",
"test": "jest",
"prep": "rm -rf .dist && mkdir .dist && cp LICENSE README* package.json .dist",
"build": "rollup -c && tsc -p tsconfig.types.json"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"fs-extra": "^10.1.0",
"jest": "^29.5.0",
"rollup": "^4.3.0",
"semantic-release": "^21.0.1",
"snazzy": "^9.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"ts-standard": {
"ignore": [
".dist",
"*.js"
]
}
}