-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 954 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
{
"name": "tinysignals",
"version": "1.1.1",
"description": "Simple observable data structure",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/tobico/tinysignals",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "run-s build test:*",
"test:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different",
"test:unit": "jasmine --config=jasmine.json"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "*",
"jasmine": "*",
"npm-run-all": "*",
"prettier": "*",
"tslint": "*",
"tslint-config-prettier": "*",
"tslint-immutable": "*",
"typescript": "*"
},
"prettier": {
"singleQuote": true
}
}