-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 910 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
39
40
41
42
{
"name": "typescript-array-utils",
"version": "0.1.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Immutable array manipulation methods",
"keywords": [
"typescript",
"array",
"utility",
"immutable",
"manipulation"
],
"scripts": {
"prepublishOnly": "tsc -d",
"compile": "tsc -d",
"test": "ts-node node_modules/tape/bin/tape tests/*.test.ts",
"lint": "tslint src/* src/**/* test/*"
},
"author": "Daniel Król",
"license": "MIT",
"devDependencies": {
"@types/tape": "^4.2.28",
"tape": "^4.6.3",
"ts-node": "^3.3.0",
"tslint": "^5.1.0",
"typescript": "~2.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mleko/typescript-array-utils.git"
},
"files": [
"index.ts",
"LICENSE.md",
"README.md",
"tsconfig.json",
"tslint.json",
"src",
"dist"
]
}