This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@arg-def/mapper-js",
"version": "1.0.2",
"description": "Fast, reliable and intuitive object mapping.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"authors": "echo 'Dot-notation is authored by: \n' > AUTHORS.md | git log --format='* %aN <%aE>' | sort -u >> AUTHORS.md",
"prepare": "npm run build && npm run authors ",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags",
"release": "standard-version",
"commit": "npx git-cz",
"build": "npm run clean && babel src -d lib --extensions '.ts' --ignore '**/*.test.ts' && tsc --declaration --emitDeclarationOnly",
"postbuild": "rollup --config",
"clean": "rm -rf lib",
"test": "jest --no-cache",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint './src/**/*.ts' || exit 0",
"lint:fix": "npm run lint -- --fix || exit 0",
"prettier": "prettier -c --write 'src/**/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arg-def/mapper-js.git"
},
"keywords": [
"object-mapping",
"mapping",
"javascript",
"dot-notation",
"es6",
"ecma-script"
],
"author": "Marcos Gonçalves <contact@themgoncalves.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arg-def/mapper-js/issues"
},
"homepage": "https://github.com/arg-def/mapper-js#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/chai": "^4.2.8",
"@types/expect": "^24.3.0",
"@types/jest": "^25.1.1",
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"commitlint": "^8.3.5",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"prettier": "1.19.1",
"rollup": "^1.31.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"standard-version": "^7.1.0",
"ts-jest": "^25.1.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@arg-def/dot-notation": "^0.1.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}