-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.78 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
{
"name": "nc-deeplink",
"version": "1.0.6",
"description": "A library for creating deep links from regular links.",
"scripts": {
"build": "tsc",
"copy": "(copyfiles -f \"prepublish/package.json\" \"./lib\")",
"build-and-copy": "npm run build && npm run copy",
"version": "auto-changelog && git add CHANGELOG.md",
"test": "jest",
"test-debug": "jest --runInBand --detectOpenHandles",
"prepare": "npm run build-and-copy"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neutron-Creative/deeplink.git"
},
"keywords": [
"deep",
"links",
"link",
"links",
"neutron",
"creative",
"neutron",
"creative",
"deep",
"seo",
"marketing",
"uiux",
"ui",
"ux"
],
"author": "Neutron Creative Inc.",
"license": "LGPL-2.1-only",
"bugs": {
"url": "https://github.com/Neutron-Creative/deeplink/issues"
},
"homepage": "https://github.com/Neutron-Creative/deeplink#readme",
"dependencies": {
"ua-parser-js": "^0.7.22"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.13",
"@types/node": "^14.10.1",
"@types/ua-parser-js": "^0.7.33",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"auto-changelog": "^2.2.0",
"babel-jest": "^26.3.0",
"copyfiles": "^2.4.0",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
}
}