forked from amanboss9/naviboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.72 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
88
89
{
"name": "naviboard",
"version": "0.0.0-semantically-released",
"description": "A javascript library for handling navigation on web application, feature phone and KAIOS applications.",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"prebuild": "rm -rf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist src",
"build:umd": "webpack --output-filename naviboard.js",
"build:umd.min": "webpack --output-filename naviboard.min.js -p",
"test": "mocha test/*.js -w",
"test:single": "mocha test/naviboard.test.js",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/amanboss9/naviboard.git"
},
"keywords": [
"KaiOS",
"featurePhone",
"keyboard",
"navigation",
"focusHandling"
],
"author": "Aman Sharma <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/amanboss9/naviboard/issues"
},
"homepage": "https://github.com/amanboss9/naviboard#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.0.0",
"chai": "4.1.2",
"commitizen": "2.10.1",
"jsdom": "^11.12.0",
"jsdom-global": "3.0.2",
"mocha": "5.2.0",
"npm-run-all": "4.1.3",
"semantic-release": "^15.14.0",
"travis-deploy-once": "^5.0.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"cz-conventional-changelog": "2.1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions"
]
}
}