-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
75 lines (75 loc) · 2.19 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
{
"name": "webar.js",
"version": "0.1.2",
"description": "JS framework for WebAR",
"main": "./dist/webar.js",
"scripts": {
"build": "cross-env BABEL_ENV=ROLLUP rollup -c",
"dev": "cross-env BABEL_ENV=WEBPACK node examples/webpack.server.js",
"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 && tnpm publish",
"lint": "eslint .",
"fix": "eslint --fix ./src"
},
"keywords": [
"web",
"ar"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.5",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"html-webpack-plugin": "^2.28.0",
"pre-commit": "^1.2.2",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"standard-version": "^4.2.0",
"uglify-es": "^3.3.5",
"validate-commit-msg": "^2.14.0",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-dev-server": "^2.10.0",
"webpack-hot-middleware": "^2.15.0",
"webpack-merge": "^4.1.1"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"release",
"revert",
"deps"
]
}
},
"dependencies": {
"vconsole": "^3.1.0"
}
}