-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
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": "igem-cli",
"version": "1.0.2",
"description": "A command line tool to make uploading to the iGEM website easier.",
"main": "./lib/index.js",
"bin": {
"igem-cli": "./lib/index.js"
},
"files": [
"lib/**/*"
],
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"installglobal": "npm run build && sudo npm i -g",
"use": "npm run build && npm i -g",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc -p ."
},
"keywords": [
"igem",
"washington"
],
"author": "Team Washington",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.2",
"clear": "^0.1.0",
"commander": "^2.20.0",
"figlet": "^1.2.3",
"path": "^0.12.7",
"puppeteer": "^1.19.0"
},
"devDependencies": {
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/jest": "^24.0.17",
"@types/node": "^12.6.9",
"@types/puppeteer": "^1.19.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}