-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "@microstates/todomvc",
"version": "0.12.0",
"description": "Microstate for TodoMVC Components",
"main": "build/todomvc.cjs.js",
"module": "build/todomvc.es.js",
"private": false,
"files": [
"build",
"src",
"README.md"
],
"scripts": {
"coverage": "jest --coverage",
"start": "npm run test -- --watch",
"test": "jest",
"build": "rollup -c",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microstates/todomvc.git"
},
"keywords": [
"microstates",
"todomvc"
],
"author": "Taras Mankovski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microstates/todomvc/issues"
},
"homepage": "https://github.com/microstates/todomvc#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"microstates": "0.14.0",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-node-resolve": "^5.0.0"
},
"peerDependencies": {
"microstates": "^0.14.0"
},
"jest": {
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.jsx?$"
}
}