-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 907 Bytes
/
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
{
"name": "project-decoder-ring",
"version": "1.0.0",
"description": "This project allows you to encode and decode text with a variety of different ciphers.",
"scripts": {
"docker:build": "docker image build . -t thinkful-ed/zid-pf-project-decoder-ring-01-qualified",
"docker:run": "docker run --rm -it -p 3000:3000 thinkful-ed/zid-pf-project-decoder-ring-01-qualified",
"docker:stop": "docker stop $(docker ps -q)",
"docker:test": "docker run -t thinkful-ed/zid-pf-project-decoder-ring-01-qualified npm test",
"start": "live-server",
"start:solution": "npm run -it docker:build && npm run docker:run",
"test": "mocha",
"test:solution": "npm run docker:build && npm run docker:test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.3.7",
"colors": "1.4.0",
"live-server": "1.2.1",
"mocha": "^8.4.0"
}
}