-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.22 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
{
"name": "utilsac",
"version": "15.3.0",
"description": "Utility functions",
"license": "CC0-1.0",
"type": "module",
"main": "utility.js",
"scripts": {
"test": "ava",
"perftest": "node ./tests/performance/deepCopy.js",
"lint-fix": "eslint --ignore-path .gitignore --fix .",
"lint": "eslint --ignore-path .gitignore ."
},
"devDependencies": {
"ava": "^4.3.3",
"eslint": "^8.24.0",
"eslint-config-red": "^1.9.1",
"leistung": "^5.0.1"
},
"eslintConfig": {
"extends": [
"red"
],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"ecmaFeatures": {}
},
"env": {
"es2021": true,
"browser": true
}
},
"ava": {
"nodeArguments": [
"--experimental-modules"
],
"files": [
"tests/specification/**"
]
},
"files": [
"typeCast.js",
"browserUtility.js",
"utility.js",
"deep.js",
"readme.md",
"license.txt",
"changelog.md"
],
"repository": {
"type": "git",
"url": "git://github.com/GrosSacASac/utilsac.git"
},
"keywords": [
"utility",
"deep",
"equal",
"copy",
"assign",
"memoize",
"type",
"cast",
"eval",
"global"
]
}