-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "@motorcycle/dom",
"version": "17.0.0",
"description": "Declarative, functional, reactive abstractions for the DOM",
"main": "lib/index.js",
"module": "lib.es2015/index.js",
"jsnext:main": "lib.es2015/index.js",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"scripts": {
"build": "cd ../../ && node ./tools/build.js --only dom",
"test": "yarn test:lint && yarn test:unit",
"test:unit": "../../node_modules/.bin/typed-test --browser 'src/*.test.ts' 'src/**/*.test.ts'",
"test:lint": "../../node_modules/.bin/prettier --write --print-width 100 --tab-width 2 --no-semi --single-quote --trailing-comma es5 --parser typescript src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/motorcyclets/motorcycle.git"
},
"keywords": [
"motorcycle",
"motorcyclets",
"motorcyclejs",
"most",
"mostjs",
"functional",
"reactive",
"typescript",
"modern",
"architecture"
],
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/motorcyclets/motorcycle/issues"
},
"homepage": "https://github.com/motorcyclets/motorcycle#readme",
"dependencies": {
"@motorcycle/stream": "3.0.0",
"@motorcycle/types": "3.0.0",
"@typed/prelude": "4.0.0"
},
"devDependencies": {
"@motorcycle/test": "3.0.0"
}
}