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
31 lines (31 loc) · 931 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 931 Bytes
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
{
"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",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:lib & npm run build:es",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"clean": "rimraf es lib coverage",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch --updateSnapshot --coverage false",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__",
"posttest": "npm run typecheck"
},
"keywords": [ "action", "flow" ],
"files": [ "lib", "es" ],
"dependencies": {
"@types/node": "^10.5.1",
"tslib": "^1.9.3",
"betsy": "next"
},
"devDependencies": {}
}