-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "fancy-object",
"version": "2.2.2",
"description": "a featured javascript object to use as a javascript literal",
"main": "./dist/index.js",
"type": "commonjs",
"types": "./dist/d-types/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "npx tsc",
"build:dev": "npx tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samislam/fancy-object.git"
},
"keywords": [
"fancy-object",
"fancy-js-object",
"array-object",
"map-object",
"object-mapping"
],
"author": "Islam Yamor",
"license": "MIT",
"bugs": {
"url": "https://github.com/samislam/fancy-object/issues"
},
"homepage": "https://github.com/samislam/fancy-object#readme",
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"nodemon": "^2.0.19",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.1"
},
"dependencies": {
"@samislam/log": "^1.1.4",
"lodash": "^4.17.21",
"ts-node": "^10.9.1"
}
}