-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.71 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
{
"name": "frap",
"version": "0.0.0",
"description": "A tiny Functional Reactive architecture for JS apps.",
"main": "lib/cjs/index.js",
"module": "lib/index.js",
"unpkg": "dist/frap.min.js",
"scripts": {
"build": "npm run clean && npm run build-legacy & npm run build-es",
"build-legacy": "tsc --module commonjs --outDir lib/cjs",
"build-es": "tsc --module es2015",
"bundle": "npm run build && rollup -c",
"clean": "rm -rf build",
"test": "npm run test-types && loltest",
"test-types": "tsc test/_types.ts --noEmit",
"lint": "tslint --format stylish --project .",
"pretest": "npm run lint",
"examples": "tsc --project examples --outDir examples/build --rootDir examples",
"prepublishOnly": "npm run bundle",
"release": "npm install && npm test && npm run bundle && git add package.json package-lock.json dist && git commit -m $npm_package_version && git tag $npm_package_version && git push && git push --tags"
},
"author": "Martin Algesten <martin@lookback.io>",
"contributors": [
"Johan Brook <johan@lookback.io>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lookback/frap.git"
},
"bugs": {
"url": "https://github.com/lookback/frap/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^12.0.0",
"loltest": "github:lookback/loltest#1.1.2",
"rollup": "^1.16.7",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-replace": "^2.2.0",
"tslint": "^5",
"tslint-immutable": "^5",
"typescript": "^3.5"
},
"dependencies": {
"xstream": "10.x || 11.x"
}
}