-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 KB
/
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
{
"name": "@muft/dot",
"version": "1.0.1",
"description": "dot makes it possible to transform javascript objects using dot notation or array of strings.",
"author": "Aman Khanakia",
"license": "MIT",
"homepage": "https://khanakia.com",
"main": "./dist/index.js",
"publish": "npm publish --access public",
"scripts": {
"wpack": "./node_modules/.bin/webpack",
"wpack:dev": "yarn wpack --config ./webpack.config.ts",
"example": "ts-node ./src/examples/index.ts",
"test": "jest"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/khanakia"
},
"repository": {
"type": "git",
"url": "https://github.com/muftjs/dot"
},
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
}
}