-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "circ-flatten",
"version": "0.0.1",
"description": "Flatten (circular) objects.",
"main": "./app/dist/esm/circFlatten.mjs",
"types": "./app/dist/esm/circFlatten.d.ts",
"exports": {
"node": {
"import": "./app/dist/esm/circFlatten.mjs",
"require": "./app/dist/cjs/circFlatten.js"
},
"default": "./app/dist/esm/circFlatten.mjs"
},
"scripts": {
"build": "del-cli app/dist && rollup --config rollup.prod.config.js && renamer --find /\\.js$/i --replace .mjs app/dist/esm/**",
"dev": "npm run devWeb",
"devWeb": "rollup --config rollup.web.dev.config.js -w",
"devNode": "rollup --config rollup.node.dev.config.js -w",
"deploy": "npm run build && npm publish",
"repl": "node ./repl/dist/circFlatten-repl.js",
"start": "npm run repl",
"buildTest": "rollup --config rollup.node.test.config.js",
"test": "npm run buildTest && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximilianMairinger/circFlatten.git"
},
"keywords": [
"circ",
"circular",
"cyclic",
"recursive",
"self-referencing",
"object",
"flatten",
"flat",
"serialize"
],
"author": "maximilianMairinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/maximilianMairinger/circFlatten/issues"
},
"homepage": "https://github.com/maximilianMairinger/circFlatten#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-typescript": "^5.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^13.13.4",
"circ-clone": "^1.0.0",
"circ-json": "^1.0.3",
"commander": "^6.2.1",
"del-cli": "^5.0.0",
"jest": "^26.6.3",
"jest-expect-ordered": "^1.0.0",
"number-to-words": "^1.2.4",
"renamer": "^4.0.0",
"rollup": "^2.18.1",
"tslib": "2.0.0",
"typescript": "^4.0.2",
"webpack-merge": "^5.0.9"
}
}