-
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.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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": "@cisl/io-display",
"version": "1.0.0-dev.2",
"description": "",
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"contributors": [
{
"name": "Matthew Peveler",
"email": "pevelm@rpi.edu"
}
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint src/*",
"lint:fix": "eslint --fix src/*",
"prepublishOnly": "echo \"Do not run publish directly, run tsc-publish\" && exit 1",
"tsc-publish": "tsc-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/cislrpi/io-display"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@types/lodash.isempty": "^4.4.6",
"lodash.isempty": "^4.4.0"
},
"peerDependencies": {
"@cisl/io": ">=1.0.0"
},
"devDependencies": {
"@cisl/io": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"tsc-publish": "^0.3.0",
"typescript": "^3.6.3"
}
}