forked from mongoosejs/mpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "@bscotch/mpath",
"version": "0.9.1",
"description": "Get/Set object values using MongoDB-like path notation",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"main": "./build/index.js",
"files": [
"build/lib/**/*",
"build/index.*",
"build/types/**/*"
],
"scripts": {
"build": "rm -rf build && npx tsc",
"test": "npm run build && mocha -r source-map-support/register --bail ./build/test/",
"preversion": "git checkout develop && npm test",
"version": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add -A",
"postversion": "git push origin develop --follow-tags && npm publish",
"tsc-live": "npx tsc -w"
},
"repository": "https://github.com/bscotch/mpath",
"homepage": "https://github.com/bscotch/mpath#readme",
"keywords": [
"mongodb",
"path",
"get",
"set"
],
"author": "Adam Coster (https://bscotch.net/about)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"chai": "^4.3.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.20.0",
"eslint-plugin-prettier": "^3.3.1",
"esm": "^3.2.25",
"mocha": "^8.3.0",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}