-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "francis",
"version": "2.1.0",
"description": "Reactive programming with focus on developer friendly stream semantics, high performance and functional usage",
"author": "Matti Lankinen <[email protected]>",
"license": "MIT",
"keywords": [
"reactive programming",
"frp",
"typescript",
"baconjs"
],
"main": "dist/francis.js",
"types": "lib/index.d.ts",
"jsnext:main": "dist/francis.esm.js",
"module": "dist/francis.esm.js",
"sideEffects": false,
"scripts": {
"docs": "cd docs && npm run build && cd ..",
"prebuild": "rm -rf lib dist && mkdir lib dist",
"postbuild": "echo 'gzipped bundle sizes'; for js in dist/*.js; do echo \"$js : $(gzip-size $js)\"; done",
"package": "for c in build/*; do rollup -c $c; done",
"compile": "tsc -p ./tsconfig.build.json && cp src/_symbols.* lib/",
"build": "npm run compile && npm run package",
"lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"prettify": "prettier --write 'src/**/*.ts'",
"linterfixes": "tslint --fix --project .",
"format": "npm run prettify && npm run linterfixes",
"ts-node": "ts-node -O '{\"module\": \"commonjs\"}'",
"test": "jest",
"test:ci": "jest --runInBand",
"prepublishOnly": "npm t && npm run lint && npm run build && npm run docs"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"@types/ramda": "^0.25.46",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"baconjs": "^2.0.10",
"gzip-size-cli": "^3.0.0",
"jest": "^23.6.0",
"partial.lenses": "^14.17.0",
"prettier": "^1.15.3",
"ramda": "^0.26.1",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.1",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "3.2.x",
"typescript-snapshots-plugin": "^1.5.3"
},
"jest": {
"globals": {
"__FRANCIS_DEV__": 1,
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "/test/[^_].*\\.ts$",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}