-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "cytoscape-effective-area",
"version": "0.2.1",
"description": "Invoke fit/center with an effective area",
"main": "./dist/index.common.js",
"module": "./dist/index.esm.js",
"unpkg": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"prepare": "run-s lint build copyright",
"postpublish": "run-s gh-pages:build gh-pages:deploy",
"gh-pages:build": "cpy demo.html ./dist --rename=index.html",
"gh-pages:deploy": "gh-pages -d ./dist",
"copyright": "update license",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"build": "rollup -c"
},
"author": {
"name": "lambdalisue",
"email": "lambdalisue@hashnote.net"
},
"repository": {
"type": "git",
"url": "https://github.com/lambdalisue/cytoscape-effective-area"
},
"keywords": [
"cytoscape",
"cytoscape-extension"
],
"homepage": "https://github.com/lambdalisue/cytoscape-effective-area",
"license": "MIT",
"devDependencies": {
"@types/cytoscape": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"cpy-cli": "^2.0.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"gh-pages": "^1.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.16.4",
"rollup": "^1.4.1",
"rollup-plugin-typescript2": "^0.19.3",
"typescript": "^3.3.3333",
"update": "^0.7.4",
"updater-license": "^1.0.0"
},
"peerDependencies": {
"cytoscape": "^3.4.2"
},
"dependencies": {}
}