-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
66
{
"name": "aperol",
"version": "2.2.0",
"description": "JS library for asynchronous processing of side effects in action based application.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"package.json",
"package-lock.json"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"build": "npm run build-declarations && webpack --config=webpack.config.js",
"build-declarations": "tsc --declaration",
"prebuild": "rm -rf dist/*",
"prepare": "npm run build",
"test": "env NODE_ENV=test TS_NODE_PROJECT=tsconfig.test.json mocha --opts mocha.opts",
"lint": "npm run lint-src && npm run lint-tests",
"lint-src": "tslint --config tslint.json --project tsconfig.json src/**/*.{ts,tsx}",
"lint-tests": "tslint --config tslint.json --project tsconfig.test.json tests/**/*.{ts,tsx}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misak113/aperol.git"
},
"keywords": [
"async",
"flux",
"redux",
"await",
"yield",
"iterator",
"side-effects",
"action"
],
"author": "Michael Zabka <zabka.michael@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/misak113/aperol/issues"
},
"homepage": "https://github.com/misak113/aperol#readme",
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@types/mocha": "5.2.6",
"@types/node": "10.14.5",
"@types/redux": "3.6.0",
"@types/should": "13.0.0",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.0.5",
"mocha": "6.1.4",
"redux": "4.0.1",
"should": "13.2.3",
"ts-node": "8.1.0",
"tslint": "5.16.0",
"typescript": "4.5.5",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"zen-observable": "0.8.14"
}
}