-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "@structure-codes/utils",
"version": "0.0.3",
"description": "A library containing utilities to convert tree structures between JSON and string formats",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -w -c rollup.config.js",
"test": "jest --verbose",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/structure-codes/utils.git"
},
"author": "structure-codes",
"license": "MIT",
"bugs": {
"url": "https://github.com/structure-codes/utils/issues"
},
"homepage": "https://github.com/structure-codes/utils#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"rollup": "^2.59.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@structure-codes/is-nondot": "^1.1.2"
}
}