-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "@microstates/union",
"version": "0.1.0",
"description": "Crisply modeled state machines with tagged union types for Microstates.",
"repository": "https://github.com/microstates/union",
"author": "Charles Lowell <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/microtates-union.cjs.js",
"module": "dist/microtates-union.es.js",
"unpkg": "dist/microtates-union.umd.js",
"browser": "dist/microtates-union.umd.js",
"scripts": {
"test": "mocha --recursive -r tests/setup tests",
"build": "rollup -c",
"prepare": "npm run build",
"prerelease": "npm test && npm run build"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"expect": "^24.1.0",
"mocha": "^5.2.0",
"rollup": "^1.0.0",
"rollup-plugin-babel": "4.3.1",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-filesize": "6.0.0",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-replace": "2.1.0",
"microstates": "^0.13.0"
},
"peerDependencies": {
"microstates": "^0.13.0"
}
}