-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 KB
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
{
"name": "@axaptional/object-id",
"version": "1.0.1",
"description": "A simple utility function that creates and returns incremental object IDs",
"main": "dist/object-id.js",
"types": "dist/object-id.d.ts",
"scripts": {
"test": "mocha",
"build": "webpack",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"package.json"
],
"directories": {
"lib": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axaptional/object-id.git"
},
"keywords": [
"incremental",
"object",
"id",
"oid",
"weak",
"map",
"weakmap"
],
"author": {
"name": "André Mategka",
"email": "12amdeveloper@gmail.com"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/axaptional/object-id/issues"
},
"homepage": "https://github.com/axaptional/object-id",
"devDependencies": {
"mocha": "^6.1.4",
"terser-webpack-plugin": "^1.2.3",
"ts-declaration-webpack-plugin": "^1.1.1",
"ts-loader": "^5.3.3",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3333",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}