forked from vector-js/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 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
47
48
49
50
51
52
{
"name": "@vector-js/library",
"version": "0.0.3",
"description": "A library for creating interactive vector graphics on the web.",
"main": "vector.js",
"module": "dist/index.js",
"modules.root": "dist",
"homepage": "https://vectorjs.org",
"repository": {
"type": "git",
"url": "https://github.com/vector-js/vector.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"vector.js",
"dist/elements/",
"dist/model/",
"dist/util/",
"dist/index.js",
"dist/interactive.js",
"css/"
],
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"directory-tree": "^2.2.4",
"http-server": "^0.12.3",
"jsonfile": "^5.0.0",
"mocha": "^6.1.4",
"rollup": "^1.17.0",
"tree-flatten": "^1.0.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"scripts": {
"api": "typedoc",
"build": "tsc",
"clean": "rm -rf ./dist/ && rm -rf ./docs/",
"deploy": "npm run clean && npm run build && npm run tutorial && npm run api && npm run rollup && npm run website",
"package": "tar --exclude=\"*.js.map\" -czvf ./dist/library.tar.gz ./dist/ ./css/library.css",
"website": "cd website && hugo",
"watch": "tsc -w",
"rollup": "rollup --config",
"start": "http-server .",
"tutorial": "./getting-started.sh"
}
}