-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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
{
"name": "treesy",
"version": "0.2.33",
"description": "An API for creating and manipulating tree-node structures",
"keywords": [
"tree",
"node",
"api",
"structure",
"data",
"json"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"cdnjs": "dist/index.iife.js",
"types": "dist/types.d.ts",
"repository": "[email protected]:baryla/treesy.git",
"author": "Adrian Barylski",
"license": "MIT",
"scripts": {
"dev": "rollup -w -c rollup.config.ts",
"build": "rollup -c rollup.config.ts",
"build-prod": "NODE_ENV=production yarn build",
"test": "jest --detectOpenHandles --testTimeout=10000 --forceExit --coverage --passWithNoTests",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepublish": "yarn format && yarn lint && yarn test && yarn build-prod",
"npm:publish": "npm publish"
},
"files": [
"dist/index.js",
"dist/index.es.js",
"dist/index.iife.js",
"dist/types.d.ts",
"readme.md"
],
"bugs": {
"url": "https://github.com/baryla/treesy/issues"
},
"homepage": "https://github.com/baryla/treesy#readme",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"conventional-changelog-cli": "^2.0.34",
"eslint": "^7.6.0",
"git-cz": "^4.7.0",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-dts": "^1.4.9",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}