-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "typescript-array-extensions",
"version": "0.4.3",
"description": "Array extensions to typescript.",
"main": "index.js",
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"test": "karma start",
"test-ci": "karma start --single-run --no-auto-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s-soltys/typescript-array-extensions.git"
},
"keywords": [
"typescript",
"array",
"extensions"
],
"author": "szymon.soltysiak@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/s-soltys/typescript-array-extensions/issues"
},
"homepage": "https://github.com/s-soltys/typescript-array-extensions#readme",
"devDependencies": {
"@types/core-js": "^0.9.35",
"@types/jasmine": "^2.5.35",
"core-js": "^2.4.1",
"jasmine-core": "~2.4.1",
"karma": "~1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "~1.0.2",
"karma-typescript": "2.1.7",
"typescript": "~2.1.6"
}
}