-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "letters-for-my-princess",
"version": "1.0.0",
"description": "An app to code and encode messages.",
"main": "src/index.html",
"directories": {
"test": "test"
},
"scripts": {
"htmlhint": "htmlhint src/*.html test/*.html",
"eslint": "eslint --ext .js src/ test/",
"pretest": "npm run eslint && npm run htmlhint",
"test": "jest --verbose --coverage",
"open-coverage-report": "opener ./coverage/lcov-report/index.html",
"start": "serve ./src",
"deploy": "gh-pages -d src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paclaraujo/letters-for-my-princess.git"
},
"keywords": [
"caesar",
"cipher",
"encode",
"decode",
"responsive"
],
"author": "Paloma C L Araujo",
"license": "ISC",
"bugs": {
"url": "https://github.com/paclaraujo/letters-for-my-princess/issues"
},
"homepage": "https://github.com/paclaraujo/letters-for-my-princess#readme",
"dependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-jest": "^24.9.0",
"eslint": "^5.9.0",
"gh-pages": "^2.1.1",
"htmlhint": "^0.11.0",
"jest": "^24.9.0",
"opener": "^1.5.1",
"serve": "^11.0.0"
}
}