-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
108 lines (108 loc) · 2.47 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
99
100
101
102
103
104
105
106
107
108
{
"name": "tofu.js",
"version": "0.6.3",
"description": "a helper three.js library for building UC-AR",
"main": "./build/tofu.js",
"module": "./esm/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"build": "rollup -c",
"build:dev": "rollup -c -w",
"prever": "npm run build && npm run extract && 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",
"extract": "npmsrcify extract",
"docs": "jsdoc -c jsdoc.conf.json -R README.md",
"lint": "eslint .",
"fix": "eslint --fix ./src",
"http": "hs -o",
"precommit": "npm run lint",
"commitmsg": "commitlint -E GIT_PARAMS",
"test": "karma start"
},
"files": [
"CHANGELOG.md",
"README.md",
"build",
"esm",
"src"
],
"repository": {
"type": "git"
},
"keywords": [
"uc-ar",
"tofu",
"three",
"3d"
],
"author": {
"name": "jasonChen1982"
},
"license": "MIT",
"peerDependencies": {
"three": "^0.89.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@pixi/jsdoc-template": "^2.2.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"boids.js": "0.0.3",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"dat.gui": "^0.7.1",
"eslint": "^4.19.1",
"eslint-config-egg": "^5.1.1",
"http-server": "^0.10.0",
"husky": "^0.14.3",
"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.3",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-watch": "^4.3.1",
"standard-version": "^4.4.0",
"stats.js": "^0.17.0",
"three": "^0.92.0",
"validate-commit-msg": "^2.14.0"
},
"config": {
"npmsrcify": {
"modules": [
"dat.gui",
"boids.js",
"stats.js",
"three"
],
"output": "./examples/lib"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"release",
"revert",
"deps"
]
}
},
"dependencies": {
"three.interaction": "0.1.0"
}
}