-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 816 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 816 Bytes
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
{
"name": "@openovate/jsm",
"version": "0.0.19",
"description": "JavaScript Modules that Work in Node, and Browser",
"author": "Christian Blanquera <cblanquera@openovate.com>",
"license": "MIT",
"homepage": "https://github.com/openovate/jsm#readme",
"bugs": {
"url": "https://github.com/openovate/jsm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openovate/jsm.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types.ts"
],
"scripts": {
"test": "jest",
"build": "tsc",
"docs": "typedoc"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.11",
"typescript": "^3.6.3"
}
}