-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"private": true,
"author": "TypeScriptLibs and Contributors",
"description": "TypeScript library for Apple CloudKit JS",
"license": "MIT",
"name": "tsl-apple-cloudkit",
"version": "0.2.34",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bugs": "https://github.com/typescriptlibs/tsl-apple-cloudkit/issues/new",
"homepage": "https://typescriptlibs.eu/",
"repository": "https://github.com/typescriptlibs/tsl-apple-cloudkit.git",
"devDependencies": {
"@types/node": "~18.6.0",
"@typescriptlibs/amd": "^1.3.1",
"@typescriptlibs/svr": "^0.2.0",
"typescript": "~3.9.10"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"client/tsl-apple-cloudkit.js",
"lib/index.d.ts",
"lib/install.js",
"AUTHORS.md",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"keywords": [
"Apple",
"CloudKit",
"TypeScript"
],
"peerDependencies": {
"typescript": ">=3.0.0"
},
"scripts": {
"build": "./build.sh",
"clean": "xargs rm -rf < .clean",
"install": "node ./lib/install.js",
"test": "./build.sh && ./test.sh",
"test:ci": "./test.sh"
}
}