-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ts-manip",
"version": "1.1.1",
"description": "Manipulate arrays and objects efficiently",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build-local": "ts-node ./src/index.ts",
"build-publish": "tsc -p tsconfig.publish.json",
"lint": "eslint . --ext .ts",
"test": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonMejane/ts-manip.git"
},
"bugs": {
"url": "https://github.com/JasonMejane/ts-manip/issues"
},
"homepage": "https://github.com/JasonMejane/ts-manip#readme",
"keywords": [
"manip",
"manipulate",
"array",
"object",
"operation",
"stdlib",
"util"
],
"author": "Jason Mejane",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "4.3.0",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"eslint": "8.27.0",
"jasmine": "4.5.0",
"jasmine-core": "4.5.0",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-firefox-launcher": "2.1.2",
"karma-jasmine": "5.1.0",
"karma-typescript": "5.5.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}