-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (63 loc) · 1.88 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
67
68
{
"name": "@mfederczuk/deeptools",
"version": "2.0.0-rc01",
"description": "A set of utility functions that recursively operate on objects",
"keywords": [
"deep",
"clone",
"copy",
"freeze",
"deepclone",
"deepcopy",
"deepequal",
"deepequals",
"deepfreeze"
],
"homepage": "https://github.com/mfederczuk/deeptools#readme",
"bugs": {
"url": "https://github.com/mfederczuk/deeptools/issues",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"author": "Michael Federczuk <[email protected]>",
"contributors": [
"Michael Federczuk <[email protected]>"
],
"files": [
"COPYING.txt",
"LICENSE.txt",
"LICENSES",
"out",
"types"
],
"main": "out/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mfederczuk/deeptools.git"
},
"scripts": {
"lint": "npx --package=eslint -- eslint .",
"build": "npx --package=typescript -- tsc",
"build-watch": "npm run build -- --watch",
"clean": "rm -rf -- types/ out/",
"rebuild": "npm run clean && npm run build --",
"postprocess": "find out/ -type f -name '*.js' -exec npx --package=uglify-js -- uglifyjs -o {} -- {} \\;",
"test": "npx --package=mocha -- mocha",
"update-dependencies": "rm -rf types/ out/ node_modules/ package-lock.json yarn.lock && npm update --save && npx --package=npm-check-updates ncu --upgrade && npm install",
"version": "./update-version-from-package",
"prepare": "npm run clean && npm run lint && npm run test && npm run build && npm run postprocess"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"mocha": "^10.2.0",
"npm-check-updates": "^16.6.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4"
}
}