-
Notifications
You must be signed in to change notification settings - Fork 1
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": "typescript-typedefs",
"version": "0.4.0",
"license": "MIT",
"author": "Bram Kaashoek",
"repository": {
"type": "git",
"url": "https://github.com/BramKaashoek/typescript-typedefs"
},
"keywords": [
"GraphQL",
"TypeScript",
"typeDefs",
"interfaces",
"decorators"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint --ext .ts src/",
"tst": "mocha --require ts-node/register --recursive 'src/**/*.spec.ts' --timeout 8000",
"test": "npm run tst && npm run lint",
"test:watch": "nodemon -e ts -w ./src --exec npm run tst",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"graphql": "^14.3.0"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "1.9.0",
"chai": "^4.2.0",
"eslint": "5.16.0",
"eslint-config-prettier": "^4.2.0",
"graphql": "^15.5.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"prettier": "^1.17.1",
"ts-node": "^8.2.0",
"typescript": "^3.4.5"
}
}