-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1018 Bytes
/
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
{
"name": "jsconfuy-tsexamples",
"version": "0.1.0",
"description": "JSConf Uruguay 2015 - TypeScript examples",
"main": "runner/runner.ts",
"scripts": {
"install": "cd runner && tsd reinstall",
"test": "cd runner && tsc && node runner -v",
"clean-docs": "rm -rf docs",
"gendocs": "npm run clean-docs && typedoc --module commonjs --target ES5 --out docs --experimentalDecorators --ignoreCompilerErrors --name 'JSConfUY 2015 - TypeScript' ./ --exclude 'node_modules/**/*.ts' && open docs/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/enanox/jsconfuy-tsexamples.git"
},
"keywords": [
"TypeScript",
"JSConf",
"JSConfUY"
],
"author": "Mathias Rodriguez",
"license": "MIT",
"bugs": {
"url": "https://github.com/enanox/jsconfuy-tsexamples/issues"
},
"homepage": "https://github.com/enanox/jsconfuy-tsexamples",
"devDependencies": {
"tsd": "^0.6.5",
"typedoc": "^0.3.12",
"typescript": "^1.8.0-dev.20160120"
}
}