-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "@0x4d/locationar",
"version": "1.0.2",
"description": "Location based Argumented Reality for three.js",
"keywords": [
"AR",
"Augmented Reality",
"three.js",
"Location Based",
"GPS",
"AR Tooltips"
],
"browser": "dist/LOCATIONAR.js",
"repository": {
"type": "git",
"url": "https://github.com/0b01001101/locationar"
},
"scripts": {
"start": "webpack-dev-server",
"serve": "live-server",
"build:ci": "webpack --mode=production --config webpack.config.js",
"build:prod": "webpack --mode=production --config webpack.config.js && npm run docs",
"build:dev": "webpack --mode=development --config webpack.config.js",
"build:watch": "webpack --mode=development --config webpack.config.js --watch",
"lint": "tslint src/**/*.ts && prettier **/*.ts --check",
"lint:fix": "tslint --fix src/**/*.ts && prettier **/*.ts --write",
"docs": "typedoc",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"author": "0x4d",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"husky": "^3.0.0",
"live-server": "^1.2.1",
"prettier": "^1.18.2",
"prettier-webpack-plugin": "^1.2.0",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"types": "src/LOCATIONAR.ts"
}