-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.2 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.2 KB
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
84
85
86
87
88
{
"name": "@most/scheduler",
"version": "1.3.0",
"description": "Reactive programming with lean, functions-only, curried, tree-shakeable API",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"type-definitions",
"dist"
],
"scripts": {
"test": "npm run test:lint && npm run test:unit && npm run test:flow",
"test:unit": "cross-env NODE_ENV=test nyc mocha",
"test:lint": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'",
"test:flow": "flow check",
"build": "npm run build:dist && npm run build:flow",
"build:dist": "rollup -c",
"build:flow": "cpy src/index.js.flow dist",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/mostjs/core"
},
"keywords": [
"reactive",
"reactive programming",
"events",
"event stream",
"promise",
"promises",
"monad",
"monadic",
"functional",
"async"
],
"author": "brian@hovercraftstudios.com",
"license": "MIT",
"devDependencies": {
"@briancavalier/assert": "^3.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.0",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"cpy-cli": "^3.0.0",
"cross-env": "^6.0.3",
"eslint": "^6.1.0",
"eslint-config-standard-with-typescript": "^8.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.114.0",
"mocha": "^6.1.4",
"nyc": "^15.0.0",
"rollup": "^1.6.0",
"rollup-plugin-typescript2": "^0.25.2",
"sinon": "^9.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@most/prelude": "^1.8.0",
"@most/types": "^1.1.0"
},
"standard": {
"ignore": [
"test/perf",
"test/flow"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"reporter": [
"text-summary"
],
"exclude": [
"dist/**",
"coverage/**"
]
}
}