-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.2 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
79
80
81
82
83
84
85
86
87
88
{
"name": "gl-datatree",
"version": "1.0.3",
"description": "webgl 3d data tree",
"private": false,
"main": "lib/index.js",
"unpkg": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"es",
"lib"
],
"publishConfig": {
"registry": "http://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aisriver/gl-datatree.git"
},
"scripts": {
"build": "lotus-tools build",
"release": "git add . && node scripts/release.js && git push --follow-tags",
"tsc": "tsc -p ./tsconfig.json --noEmit",
"commit": "git-cz",
"eslint:fix": "eslint --fix --ext .ts,.tsx src/",
"lint:fix": "prettier --check src/**/*.ts --write",
"test": "jest"
},
"dependencies": {
"express": "^4.17.1",
"three": "^0.109.0",
"three-gltf-loader": "^1.109.0"
},
"keywords": [
"webgl",
"3d",
"data",
"tree",
"visualization",
"chart"
],
"author": "Jared",
"license": "ISC",
"bugs": {
"url": "https://github.com/aisriver/gl-datatree/issues"
},
"homepage": "https://github.com/aisriver/gl-datatree#readme",
"changelog": {
"emojis": true,
"authorName": true,
"authorEmail": true
},
"husky": {
"hooks": {
"pre-commit": "npm run tsc && npm run eslint:fix && npm run lint:fix && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"git add ."
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@lotus-ui/tools": "^0.2.5",
"@types/node": "^12.7.12",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.25",
"conventional-changelog-custom-config": "^0.2.0",
"cz-customizable": "^6.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}