-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 921 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 921 Bytes
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
{
"name": "jmesmapper",
"version": "1.1.2",
"main": "lib/index.js",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.160",
"@types/luxon": "^1.24.4",
"@types/uuid": "^8.3.0",
"benchmark": "^2.1.4",
"mocha": "^8.1.1",
"prettier": "^2.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/soxbox/jmesmapper.git"
},
"scripts": {
"build": "tsc",
"dev": "yarn build --watch",
"format": "prettier --write \"src/**/*.ts\"",
"format-check": "prettier -l 'src/**/*.ts'",
"lint": "npx tslint -p tsconfig.json",
"perf": "node perf.js",
"postversion": "git push --follow-tags",
"test": "mocha test/"
},
"dependencies": {
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"uuid": "^8.3.0"
},
"files": [
"lib/*"
]
}