-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 864 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
{
"name": "expand-obj",
"version": "2.0.2",
"author": "Bruno Silva",
"description": "📦 NODE.JS - Create a multi-key object with the same/multiple values by passing just a string or array.",
"license": "MIT",
"keywords": [
"typescript",
"object",
"expand",
"spread",
"micro"
],
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/brunos3d/expand-obj"
},
"scripts": {
"test": "yarn run test:types && yarn run test:unit",
"test:unit": "ava",
"test:types": "tsc -p ./tsconfig.json --noEmit",
"build": "tsc -p ./tsconfig.json",
"prepublishOnly": "yarn run test && yarn run build"
},
"devDependencies": {
"ava": "^3.13.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}