-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
98 lines (98 loc) · 2.4 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
89
90
91
92
93
94
95
96
97
98
{
"name": "three.interaction",
"version": "0.2.3",
"description": "a interaction manager, serve the three.js, help you build a interactivity 3d-scene",
"main": "./build/three.interaction.js",
"module": "./build/three.interaction.module.js",
"files": [
"CHANGELOG.md",
"README.md",
"build",
"esm",
"src"
],
"scripts": {
"extract": "npmsrcify extract",
"build": "rollup -c",
"build:dev": "rollup -c -w",
"prever": "npm run build && git add -A && git commit -m 'release: release a new version'",
"ver": "standard-version -m 'chore(release): v%s'",
"postver": "git push --follow-tags origin master && npm publish",
"docs": "jsdoc -c jsdoc.conf.json -R README.md",
"lint": "eslint .",
"fix": "eslint --fix ./src",
"http": "hs -o",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonChen1982/three.interaction.js.git"
},
"keywords": [
"threejs",
"three.js",
"event",
"eventer",
"interaction",
"event-system"
],
"author": {
"name": "jason Chen",
"email": "[email protected]",
"url": "http://jason82.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonChen1982/three.interaction.js/issues"
},
"homepage": "https://github.com/jasonChen1982/three.interaction.js#readme",
"peerDependencies": {
"three": "^0.89.0"
},
"devDependencies": {
"@pixi/jsdoc-template": "^2.2.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"eslint": "^4.12.1",
"eslint-config-google": "^0.9.1",
"http-server": "^0.10.0",
"jsdoc": "^3.5.5",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^4.0.1",
"npmsrcify": "0.0.2",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"standard-version": "^4.2.0",
"three": "^0.91.0",
"validate-commit-msg": "^2.14.0"
},
"config": {
"npmsrcify": {
"modules": [
"three"
],
"output": "./examples/libs"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"release",
"revert",
"deps"
]
}
}
}