-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
40
{
"name": "@blendsdk/stdlib",
"version": "1.0.10",
"description": "Standard utility functions to be used in TypeScript",
"main": "dist/index.js",
"author": "Gevik Babakhani <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/blendsdk/stdlib.git"
},
"keywords": [
"typescript",
"utility",
"language"
],
"license": "MIT",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "./node_modules/.bin/tslint -p ./tsconfig.json --fix",
"build": "rm -fR ./dist ./temp && tsc && yarn lint",
"watch": "rm -fR ./dist && tsc -w ",
"fiddle": "node ./dist/fiddle.js",
"test": "jest --detectOpenHandles",
"patch-publish": "is_git_clean && is_git_branch master && yarn build && yarn publish --patch --access public && git push origin master --tags"
},
"dependencies": {
"@types/mkdirp": "^0.5.2",
"mkdirp": "^0.5.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@blendsdk/git": "^1.0.3",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
}
}