-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "populate-array",
"version": "1.2.0",
"description": "Populate an array of objects with a set of properties",
"main": "index.js",
"module": "index.esm.js",
"scripts": {
"ts:watch": "npx tsc --watch",
"build": "npx tsc",
"bundle": "npm run build && node bundle.js",
"test": "node -r ts-node/register bin/test.ts",
"test:dev": "npx tsnd --respawn ./bin/test.ts",
"prepublishOnly": "npm run bundle && npm run test"
},
"keywords": [
"populate",
"populate-array",
"objects"
],
"author": "trapcodeio",
"repository": "https://github.com/trapcodeio/populate-array.git",
"license": "ISC",
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@japa/assert": "^1.3.4",
"@japa/runner": "^2.0.8",
"@japa/spec-reporter": "^1.1.12",
"@trapcode/benchmark": "^0.1.3",
"@types/lodash.get": "^4.4.7",
"@types/lodash.set": "^4.3.7",
"@types/node": "^17.0.41",
"esbuild": "^0.14.43",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.2"
}
}