-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "state-machine-component",
"amdName": "stateMachineComponent",
"version": "1.1.0",
"description": "250b lib for building pure functional state machine components.",
"source": "src/index.js",
"main": "dist/state-machine-component.js",
"module": "dist/state-machine-component.es.js",
"umd:main": "dist/state-machine-component.umd.js",
"scripts": {
"build": "microbundle",
"prepare": "npm run -s build",
"test": "eslint src",
"release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"eslintConfig": {
"extends": "eslint-config-developit"
},
"files": [
"src",
"dist"
],
"keywords": [
"preact",
"component",
"state machine",
"redux"
],
"author": "Jason Miller <jason@developit.ca>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-developit": "^1.1.1",
"microbundle": "^0.3.1"
},
"peerDependencies": {
"preact": "*"
}
}