-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "mithril-transition-group",
"version": "0.2.0",
"description": "A set of Mithril components for creating state/class based transitions",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "tslint src/**/*.ts",
"build": "npm run test && npm run lint && tsc -p src",
"watch": "tsc -p src --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/vrimar/mithril-transition-group.git"
},
"keywords": [
"mithril",
"transition"
],
"author": "Vasil Rimar",
"license": "MIT",
"bugs": {
"url": "https://github.com/vrimar/mithril-transition-group/issues"
},
"homepage": "https://github.com/vrimar/mithril-transition-group#readme",
"peerDependencies": {
"mithril": ">=2.0.4"
},
"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"
}
}