-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "dot-notation-tokenizer",
"version": "1.3.0",
"description": "Dot notation tokenizer",
"keywords": [
"dot-notation",
"tokenizer",
"lexer"
],
"homepage": "https://github.com/hammy2899/dot-notation-tokenizer",
"bugs": {
"url": "https://github.com/hammy2899/dot-notation-tokenizer/issues"
},
"author": {
"name": "Sean Hamilton",
"email": "[email protected]",
"url": "https://hami.me"
},
"files": [
"dist",
"src",
"README.md",
"yarn.lock"
],
"main": "dist/index.cjs",
"browser": "dist/index.min.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/hammy2899/dot-notation-tokenizer.git"
},
"scripts": {
"lint": "eslint --ext .ts .",
"test": "jest",
"build": "rimraf dist && rollup -c rollup.config.js"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"esbuild": "^0.14.49",
"eslint": "^8.20.0",
"eslint-config-hami": "^1.2.3",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-license": "^2.8.1",
"rollup-plugin-ts": "^3.0.2",
"ts-jest": "^28.0.6",
"typescript": "^4.7.4"
},
"license": "MIT"
}