forked from adamhaile/S-array
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.1 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.1 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
{
"name": "@surplus/array",
"version": "1.0.0",
"description": "Array utilities for S.js/Surplus applications",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"files": [
"LICENSE",
"index.js",
"index.d.ts"
],
"peerDependencies": {
"@surplus/s": ">=1.1.1"
},
"devDependencies": {
"jasmine": "^3.4.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"scripts": {
"build": "tsc",
"test": "jasmine",
"lint:types": "tsc --noEmit",
"lint:format": "prettier -c .",
"lint": "pnpm lint:types && pnpm lint:format",
"format": "prettier -w ."
},
"keywords": [
"S.js",
"surplus",
"reactive",
"array",
"sequence",
"list",
"collection"
],
"repository": {
"type": "git",
"url": "git+https://github.com/surplus/array.git"
},
"bugs": {
"url": "https://github.com/surplus/array/issues"
},
"author": "Josh Junon (https://github.com/qix-)",
"contributors": [
{
"name": "Adam Haile",
"email": "adam.haile@gmail.com"
}
],
"license": "MIT",
"packageManager": "pnpm@10.14.0"
}