-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 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
{
"name": "power-split",
"version": "1.0.0",
"description": "Sometimes string.split() is not enough!",
"repository": {
"type": "git",
"url": "https://github.com/monesidn/power-split"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test": "jest",
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prepublishOnly": "npm run build && npm run test",
"gen-docs": "typedoc --out docs src"
},
"author": "Daniele Monesi",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-tsdoc": "^0.2.6",
"jest": "^26.4.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"typedoc": "^0.18.0",
"typescript": "^3.9.7"
},
"dependencies": {}
}