-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 2.51 KB
/
package.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.51 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
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
{
"name": "i45-sample-data",
"version": "3.1.1",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./collections": {
"types": "./dist/collections.d.ts",
"import": "./dist/collections.js",
"default": "./dist/collections.js"
},
"./lists": {
"types": "./dist/lists.d.ts",
"import": "./dist/lists.js",
"default": "./dist/lists.js"
},
"./dictionaries": {
"types": "./dist/dictionaries.d.ts",
"import": "./dist/dictionaries.js",
"default": "./dist/dictionaries.js"
},
"./objects": {
"types": "./dist/objects.d.ts",
"import": "./dist/objects.js",
"default": "./dist/objects.js"
},
"./helpers": {
"types": "./dist/helpers.d.ts",
"import": "./dist/helpers.js",
"default": "./dist/helpers.js"
}
},
"description": "A collection of sample datasets to be used for testing and development.",
"files": [
"./dist",
"README.md",
"CHANGES.md"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc -p ./tsconfig.production.json && tsc-alias -p ./tsconfig.production.json",
"prepublishOnly": "npm run build && npm run test:all",
"test": "node tests/test-package.js",
"test:ts": "tsx tests/test-package.ts",
"test:tree-shaking": "node tests/test-tree-shaking.js",
"test:helpers": "node tests/test-helpers.js",
"test:all": "npm run test && npm run test:ts && npm run test:tree-shaking && npm run test:helpers",
"checkin": "git add . && git commit -a -m \"See CHANGES.md for a list of Revisions.\" ",
"lint": "eslint ."
},
"keywords": [
"JSON",
"data",
"sample data",
"test data",
"development data",
"datasets",
"data helpers",
"typescript"
],
"author": "CIS Guru <cisguru@outlook.com>",
"license": "ISC",
"homepage": "https://github.com/xnodeoncode/i45-sample-data",
"repository": {
"type": "git",
"url": "git+https://github.com/xnodeoncode/i45-sample-data.git"
},
"devDependencies": {
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.2",
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1"
},
"bugs": {
"url": "https://github.com/xnodeoncode/i45-sample-data/issues"
}
}