-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 970 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
33
34
35
36
37
38
{
"name": "pubsub-class",
"version": "1.0.4",
"description": "PubSub pattern binding using ES6 Decorators",
"typings": "lib/index.d.ts",
"main": "lib/index.js",
"repository": "https://github.com/Psidium/pubsub-class",
"author": "Psidium",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^24.0.14",
"dtslint": "^0.8.0",
"jest": "^24.8.0",
"prettier": "1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~2.8"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json -w",
"test": "jest",
"test:watch": "jest --watchAll",
"dtslint": "dtslint test/types",
"lint": "tslint --project tsconfig.json --fix && prettier --write"
},
"files": [
"lib",
"LICENSE.md",
"README.md"
],
"directories": {
"lib": "lib"
}
}