-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "metagram-scrs",
"version": "1.0.8",
"description": "Metagram - a web framework for model transformation and digramming",
"main": "index.js",
"bin": {
"metagram": "bin/metagram.js"
},
"dependencies": {
"canvas": "^1.6.2",
"canvas2svg": "^1.0.16",
"chalk": "^1.1.3",
"cli-color": "^1.2.0",
"events": "^1.1.1",
"get-stdin": "^5.0.1",
"jspdf": "^1.3.2",
"meow": "^3.7.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"node-fetch": "^1.6.3",
"reflect-metadata": "^0.1.9",
"source-map-support": "^0.4.14",
"whatwg-fetch": "^2.0.3",
"xmldom": "^0.1.27"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/chalk": "^0.4.31",
"@types/cli-color": "^0.3.29",
"@types/get-stdin": "^5.0.1",
"@types/jspdf": "^1.1.31",
"@types/meow": "^3.6.2",
"@types/mkdirp": "^0.3.29",
"@types/mocha": "^2.2.40",
"@types/ncp": "^2.0.0",
"@types/node": "^6.0.68",
"@types/node-fetch": "^1.6.7",
"@types/source-map-support": "^0.2.28",
"@types/xmldom": "^0.1.29",
"chai": "^3.5.0",
"copyfiles": "^1.2.0",
"http-server": "^0.9.0",
"mocha": "^3.2.0",
"read-package-json": "^2.0.5",
"rimraf": "^2.6.1",
"tslint": "^5.0.0",
"typedoc": "^0.5.10",
"typescript": "^2.2.2"
},
"scripts": {
"mocha": "mocha test/**/*.spec.js --timeout 5000 --reporter spec",
"start": "http-server out",
"pretest": "npm run clean:test && npm run build:test && npm run copy:test",
"test": "npm run lint && npm run mocha",
"clean:dest": "rimraf dest",
"clean:test": "rimraf test",
"clean:docs": "rimraf docs",
"prebuild": "npm run clean:dest",
"build": "npm run build:dest && npm run copy:dest",
"publish": "cd dest && npm publish",
"patch": "cd modules/@metagram/framework && npm version patch && cd ../../.. && npm run build",
"prelink": "npm run build",
"link": "npm run link:framework",
"link:framework": "cd dest && npm link",
"lint": "tslint -c tslint.json modules/**/*.ts",
"predocs": "npm run clean:docs",
"docs": "typedoc --out docs --mode file ",
"postdocs": "cd docs && git init && git checkout -b gh-pages && git add . && git commit -m 'Generated docs' && git remote add origin git@github.com:ksm2/metagram.git && git push -f origin gh-pages",
"build:dest": "tsc -p tsconfig.json",
"build:test": "tsc -p tsconfig.test.json",
"watch:dest": "tsc -p tsconfig.json -w",
"watch:test": "tsc -p tsconfig.test.json -w",
"copy:dest": "copyfiles ./public/**/* ./dest && copyfiles -u 3 ./modules/@metagram/*/package.json ./dest && copyfiles ./{README.md,LOGO.png,LICENSE} ./dest",
"copy:test": "copyfiles ./public/**/* ./test && copyfiles -u 3 ./modules/@metagram/*/package.json ./test && copyfiles ./README.md ./test"
},
"author": {
"name": "Konstantin Simon Maria Möllers",
"email": "ksm.moellers@gmail.com"
},
"license": "MIT"
}