-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.13 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
84
85
86
{
"name": "@most/hold",
"version": "4.1.0",
"description": "Emit latest event to new observers",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"type-definitions"
],
"repository": {
"type": "git",
"url": "https://github.com/mostjs/hold.git"
},
"scripts": {
"test": "npm run test:lint && npm run test:jscpd && npm run test:unit",
"test:unit": "nyc mocha",
"test:lint": "standard --fix 'src/**/*.ts' 'test/**/*.ts'",
"test:jscpd": "jscpd ./src/",
"build": "npm run build:dist && npm run build:min && npm run build:flow",
"build:dist": "rollup -c",
"build:min": "uglifyjs dist/index.js -m -o dist/index.min.js",
"build:flow": "flowgen --output-file dist/index.js.flow --add-flow-header dist/index.d.ts",
"prepublish": "npm run build"
},
"keywords": [
"most",
"reactive",
"event",
"functional",
"async"
],
"author": "brian@hovercraftstudios.com",
"license": "MIT",
"devDependencies": {
"@briancavalier/assert": "^3.4.0",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"cpy-cli": "^2.0.0",
"flowgen": "^1.9.0",
"jscpd": "^2.0.15",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rollup": "^1.6.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-typescript2": "^0.21.2",
"source-map-support": "^0.5.12",
"standard": "^12.0.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"uglify-js": "^3.1.1"
},
"dependencies": {
"@most/core": "^1.3.4",
"@most/scheduler": "^1.2.2",
"@most/types": "^1.0.1"
},
"babel": {
"presets": [
"env",
"flow"
]
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"reporter": [
"text",
"html"
],
"exclude": [
"dist/**",
"coverage/**"
]
}
}