-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@rustworkshop/dot-not",
"description": "Dot notation library based on recursion",
"author": {
"name": "2CHEVSKII",
"email": "2chevskii.business@inbox.ru",
"url": "https://github.com/2chevskii"
},
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/2chevskii/dot-not#readme",
"readme": "README.md",
"icon": "logo.png",
"maintainers": [
"2CHEVSKII"
],
"bugs": {
"email": "2chevskii.business@inbox.ru",
"url": "https://github.com/2chevskii/dot-not/issues"
},
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/typings/index.d.ts",
"keywords": [
"object",
"prop",
"property",
"dot",
"path",
"get",
"set",
"delete",
"access",
"notation",
"dotty",
"read",
"write",
"remove",
"add",
"copy",
"move"
],
"markdown": "github",
"private": false,
"repository": {
"type": "github",
"url": "git://github.com/2chevskii/dot-not.git"
},
"scripts": {
"build": "pwsh build.ps1 -ErrorAction Stop",
"build:project": "tsc -b -v tsconfig.json",
"compile:tests": "tsc -p tests/tsconfig.json",
"compile:lib": "tsc -p src/tsconfig.json",
"compile:lib:no-tslib": "npm run compile:lib -- --importHelpers false",
"test": "mocha --check-leaks -s 5 --recursive build/tests/",
"pretest": "npm run lint && npm run build:project",
"lint": "eslint --color --format codeframe .",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"tslib": "^1.11.1"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"assume": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^7.1.1",
"typescript": "^3.8.3"
},
"buildHash": "ee5c84ac20a2541e373b8d143a917113",
"buildNum": 28
}