-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "array-merge-by-id",
"version": "1.0.10",
"description": "array merging and comparing",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -r ./dist/",
"prod": "webpack -p",
"dev": "webpack --verbose",
"test": "jest",
"testw": "jest --watch",
"tsc": "tsc --project tsconfig.doc.json",
"doc": "npm run clean && npm run tsc && jsdoc2md --template ./README.hbs ./dist/{array-compare,array-merge,array-link,array-filter,each-pair,array-purge,array-unique,array-index-of,array-find,stringify-ids,comparer-compiler,simple-methods}.js > README.md",
"deploy2npm": "npm run doc && npm run prod && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/knee-cola/array-merge-by-id"
},
"keywords": [
"array",
"merge",
"diff"
],
"author": "knee-cola <nikola.derezic@gmail.com>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"@types/jest": "^21.1.8",
"@types/lodash": "^4.14.87",
"babel-loader": "^8.0.0-beta.0",
"clean-webpack-plugin": "^0.1.17",
"jest": "^21.2.1",
"jsdoc-to-markdown": "^3.0.2",
"ts-jest": "^21.2.4",
"ts-loader": "^3.1.1",
"typescript": "^2.6.1",
"typescript-compiler": "^1.4.1-2",
"webpack": "^3.10.0"
}
}