-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "macro-decorators",
"version": "0.1.2",
"description": "Decorators for property macros",
"main": "dist/index.js",
"repository": "https://github.com/pzuraq/macro-decorators",
"author": "pzuraq",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint ./src/*.ts ./src/**/*.ts && tsc",
"test": "mocha -r ts-node/register src/**/tests/**/*.ts",
"build": "tsc",
"build:docs": "typedoc ./src/index.ts",
"deploy": "gh-pages -d docs",
"prepublish": "yarn run build"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.0",
"@typescript-eslint/parser": "^1.10.2",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"gh-pages": "^2.0.1",
"mocha": "^6.0.2",
"prettier": "^1.18.2",
"ts-node": "^8.0.3",
"typedoc": "^0.14.2",
"typescript": "^3.4.2"
}
}