-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
56
{
"version": "0.1.0-alpha.1",
"name": "leslie-react",
"repository": {
"url": "https://github.com/eloytoro/leslie",
"type": "git"
},
"description": "Define business logic in cancellable, forkable, asynchronous hook tasks",
"main": "lib/index.js",
"module": "esm/index.js",
"jsnex:main": "esm/index.js",
"author": "Eloy Toro <[email protected]> (https://github.com/eloytoro)",
"files": [
"README.md",
"src",
"lib",
"esm"
],
"scripts": {
"clean": "rimraf ./lib ./esm",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir esm",
"build": "yarn clean && yarn build:cjs && yarn build:esm",
"test": "jest",
"preversion": "yarn test && yarn build"
},
"keywords": [
"generator",
"task",
"job",
"react",
"cancellable",
"asynchronous",
"promise",
"process"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.7.4",
"leslie": "^1.0.0-alpha.1"
},
"jest": {},
"gitHead": "b532109095a83b1bd107d42ad3fc2480f230ea1a"
}