-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "@ijprest/kle-serial",
"version": "0.15.1",
"description": "Serialization library for keyboard-layout-editor.com",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "mocha --reporter spec",
"cover": "node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ijprest/kle-serial.git"
},
"keywords": [
"kle",
"keyboard-layout-editor",
"serialization",
"json"
],
"author": "Ian Prest <npmjs.com@ian.prest.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ijprest/kle-serial/issues"
},
"homepage": "https://github.com/ijprest/kle-serial#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"json5": "^2.1.0"
}
}