-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "voice-book-search",
"version": "1.0.0",
"description": "Search for books with a voice activated input",
"main": "index.js",
"scripts": {
"test": "jest --coverage && npm run eslint",
"eslint": "eslint ./src/**/*.ts",
"build": "npm run typescript && npm run uglifycss && npm run uglifyjs",
"typescript": "tsc -p tsconfig.json",
"uglifycss": "uglifycss ./src/style.css > ./public/style.min.css",
"uglifyjs": "uglifyjs ./public/main.js -o ./public/main.min.js -c -m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebabel-eu/voice-book-search.git"
},
"keywords": [
"amp-html",
"voice-as-an-interface",
"web-components"
],
"author": "Thomas Amar <hello@ebabel.eu>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ebabel-eu/voice-book-search/issues"
},
"homepage": "https://voice-book-search.firebaseapp.com",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"acorn": "^6.1.1",
"acorn-jsx": "^5.0.1",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1",
"uglify-js": "^3.6.0",
"uglifycss": "0.0.29"
}
}