-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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": "dotize",
"version": "0.6.0",
"description": "Convert complex Js object to dot notation Js object",
"type": "module",
"source": "src/dotize.js",
"exports": {
"types": "./dist/dotize.d.ts",
"require": "./dist/dotize.cjs",
"default": "./dist/dotize.modern.js"
},
"types": "./dist/dotize.d.ts",
"main": "./dist/dotize.cjs",
"module": "./dist/dotize.module.js",
"unpkg": "./dist/dotize.umd.js",
"directories": {
"test": "test"
},
"devDependencies": {
"microbundle": "^0.15.1",
"mocha": "^10.8.2"
},
"scripts": {
"test": "npx mocha test/test.js",
"build": "microbundle",
"dev": "microbundle watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vardars/dotize.git"
},
"keywords": [
"js",
"json",
"dot-notation",
"convert",
"backward"
],
"author": "Suleyman Vardar <admin@vardars.com> (http://vardars.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vardars/dotize/issues"
},
"homepage": "https://github.com/vardars/dotize"
}