This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "mithril-jest",
"version": "1.0.3",
"description": "Lets Mithril work with Jest",
"repository": {
"type": "git",
"url": "https://github.com/ArthurClemens/mithril-jest.git"
},
"main": "dist/mithril-jest",
"module": "dist/mithril-jest.mjs",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"rollup": "rollup -c ./scripts/rollup.umd.js && rollup -c ./scripts/rollup.es.js",
"build": "npm run clean && npm run rollup",
"test": "jest test/**"
},
"keywords": [
"mithril",
"jest",
"testing"
],
"files": [
"dist",
"README.md"
],
"author": "Arthur Clemens <[email protected]> (http://visiblearea.com)",
"license": "MIT",
"dependencies": {
"jest": "^24.0.0",
"jest-cli": "^24.0.0",
"tidy-html5": "^0.1.1"
},
"peerDependencies": {
"mithril": "^1.1.6"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"fs-promise": "^2.0.3",
"mithril": "^1.1.6",
"regenerator-runtime": "^0.13.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.3"
}
}