forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.23 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.23 KB
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
{
"name": "action-chain",
"version": "1.0.0-alpha1",
"description": "Functional actions",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"license": "MIT",
"repository": "git+https://github.com/cerebral/overmind.git",
"main": "lib/index.js",
"module": "es/index.js",
"browser": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"scripts": {
"build": "npm run build:lib & npm run build:umd",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"build:umd": "npm run build:es && rollup --config && dts-bundle --name dist/bundle --main es --outputAsModuleFolder",
"clean": "rimraf dist es lib coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.ts\" --fix",
"test": "jest --coverage",
"test:watch": "jest --watch --updateSnapshot",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__",
"posttest": "npm run typecheck && npm run lint",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"keywords": [ "action", "flow" ],
"files": [ "lib", "es", "dist" ],
"dependencies": {
"@types/node": "^10.5.1",
"eventemitter3": "^3.1.0",
"tslib": "^1.9.3"
},
"devDependencies": {}
}