-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "mithril-portal",
"version": "2.0.0",
"description": "Mithril component for rendering children outside the DOM hierarchy of the parent component.",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"scripts": {
"lint": "tslint src/**/*.ts",
"build:cjs": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run test && npm run lint && npm run build:cjs && npm run build:esm",
"watch": "tsc --w",
"test": "mocha --config ./test/.mocharc.js",
"test:watch": "mocha --watch --config ./test/.mocharc.js",
"version": "npm run build && git add *",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasilrimar/mithril-portal.git"
},
"keywords": [
"mithril",
"portal"
],
"author": "Vasil Rimar",
"license": "MIT",
"bugs": {
"url": "https://github.com/vasilrimar/mithril-portal/issues"
},
"homepage": "https://github.com/vasilrimar/mithril-portal#readme",
"devDependencies": {
"@types/mithril": "^2.0.8",
"@types/mocha": "^9.0.0",
"assert": "^2.0.0",
"jsdom": "^18.0.0",
"jsdom-global": "^3.0.2",
"mithril": "^2.0.4",
"mocha": "^9.1.3",
"ts-node": "^10.3.0",
"tslint": "^5.20.1",
"typescript": "^4.4.4"
},
"dependencies": {
"tslib": "^2.3.1"
}
}