-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "@thalesrc/js-utils",
"version": "0.0.0",
"description": "Javascript utility functions for web development",
"main": "index.js",
"typings": "index.d.ts",
"homepage": "https://thalesrc.github.io/js-utils",
"keywords": [
"object",
"deep clone",
"array",
"async",
"map",
"find by key",
"try catch",
"compact",
"difference",
"intersecion",
"promise",
"defer",
"open",
"is truthy",
"is falsy",
"math",
"min max",
"noop",
"unique id",
"replace",
"remove",
"deepest",
"never",
"arrayize"
],
"repository": {
"type": "git",
"url": "https://github.com/thalesrc/js-utils.git"
},
"scripts": {
"clean:docs": "rimraf docs",
"clean:dist": "rimraf dist",
"document": "typedoc --tsconfig config/tsconfig.doc.json",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"prepare:github-pages": "npm run clean:docs && npm run document && echo \"\" > ./docs/.nojekyll",
"prepare:package": "tsc -p ./config/tsconfig.lib.json",
"version-update": "npm version $PACKAGE_VERSION --no-git-tag-version",
"change-ts-version": "rjp ./package.json typescript ~3.4.5"
},
"author": "[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^24.0.24",
"@types/node": "^12.12.21",
"jest": "^24.9.0",
"replace-json-property": "^1.4.3",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"typedoc": "^0.15.5",
"typescript": "^3.6.2"
},
"dependencies": {}
}