-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "@briancavalier/most-behavior",
"description": "behave",
"version": "3.0.1",
"author": "Brian Cavalier <[email protected]> (github.com/briancavalier)",
"bugs": {
"url": "https://github.com/briancavalier/most-behave/issues"
},
"devDependencies": {
"@briancavalier/assert": "^3.4.0",
"@most/dom-event": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"microbundle": "^0.11.0",
"parcel": "^1.12.4",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
},
"files": [
"dist"
],
"homepage": "https://github.com/briancavalier/most-behave#readme",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": {
"type": "git",
"url": "https://github.com/briancavalier/most-behave.git"
},
"scripts": {
"build": "microbundle build",
"build:add-inputs": "parcel serve examples/add-inputs/index.html",
"build:simple-clock": "parcel serve examples/simple-clock/index.html",
"build:secret-combination": "parcel serve examples/secret-combination/index.html",
"test": "tsc --noEmit && eslint 'src/**/*.ts' --fix",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@most/core": "^1.5.0",
"@most/disposable": "^1.2.1",
"@most/prelude": "^1.7.2",
"@most/types": "^1.0.2"
}
}