-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.62 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
{
"name": "sparkar-volts",
"version": "4.0.0",
"description": "An extensive non-reactive Typescript framework that eases the development experience in Spark AR",
"main": "volts.ts",
"scripts": {
"lint": "npx prettier -w . ; npx eslint . --ext .ts;",
"test": "jest",
"coverage-badge": "jest-coverage-badges && make-coverage-badge",
"build": "npx tsc -p .; npx terser volts.js -c passes=5 -o volts.min.js; rm ./volts.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomaspietravallo/sparkar-volts.git"
},
"keywords": [
"Typescript",
"Spark",
"AR",
"Augmented Reality",
"Instagram",
"Facebook"
],
"author": "Tomás Pietravallo <[email protected]> (https://tomaspietravallo.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomaspietravallo/sparkar-volts/issues"
},
"homepage": "https://github.com/tomaspietravallo/sparkar-volts#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"@types/source-map-support": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-plugin-unused-imports": "^1.1.3",
"jest": "^27.0.6",
"jest-coverage-badges": "^1.0.0",
"make-coverage-badge": "^1.2.0",
"simple-pre-commit": "^1.2.1",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"weak-napi": "^2.0.2"
},
"simple-git-hooks": {
"pre-commit": "npx prettier -w . --loglevel=silent; npx eslint . --ext .ts --quiet=true;"
}
}