-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1006 Bytes
/
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
{
"name": "list-slice",
"version": "2.3.2",
"description": "inspired by Python list method : `list.__getitem__` and `list.__setitem__`",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest ./lib/index --config=./__test__/config.ts",
"build": "tsup lib/index.ts --format esm,cjs,iife --legacy-output --dts --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanarino/list-slice.git"
},
"keywords": [
"array",
"list",
"slice",
"python",
"es6",
"getitem",
"setitem"
],
"author": "kogawananari",
"license": "MIT",
"bugs": {
"url": "https://github.com/nanarino/list-slice/issues"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.17.12",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"dependencies": {
"just-typeof": "^3.2.0"
}
}