-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 2.51 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
{
"name": "cyclejs-modal",
"version": "7.0.0",
"description": "An easy way to open custom modals in a cyclejs app",
"main": "build/cjs/src/modalify.js",
"module": "build/es6/src/modalify.js",
"typings": "build/es6/src/modalify.d.ts",
"scripts": {
"precommit": "lint-staged",
"format": "prettier --write './{src,examples}/**/*.{ts,tsx}'",
"build": "rimraf build/* && tsc -d --module ES6 --outDir build/es6 && tsc -d && rimraf build/examples",
"documentation": "typedoc --out docs src && touch docs/.nojekyll",
"prepublishOnly": "npm run build && npm run documentation",
"examples": "npm run build && npm run examples:simple && npm run examples:rxjs && npm run examples:onionify && npm run examples:animated",
"examples:simple": "browserify build/cjs/examples/simple/src/index.js -o examples/simple/build/index.js && opn examples/simple/index.html",
"examples:onionify": "browserify build/cjs/examples/onionify/src/index.js -o examples/onionify/build/index.js && opn examples/onionify/index.html",
"examples:animated": "browserify build/cjs/examples/animated/src/index.js -o examples/animated/build/index.js && opn examples/animated/index.html",
"examples:rxjs": "browserify build/cjs/examples/rxjs/src/index.js -o examples/rxjs/build/index.js && opn examples/rxjs/index.html"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
},
"lint-staged": {
"*.{js,jsx,jsx,ts,tsx}": [
"npm run format",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclejs-community/cyclejs-modal.git"
},
"keywords": [
"cyclejs",
"sortable"
],
"author": "Jan van Brügge",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclejs-community/cyclejs-modal/issues"
},
"homepage": "https://github.com/cyclejs-community/cyclejs-modal#readme",
"dependencies": {
"@cycle/dom": "^22.0.0",
"@cycle/isolate": "^4.1.0",
"@cycle/run": "^5.1.0",
"cyclejs-utils": "^4.0.2",
"xstream": "^11.7.0"
},
"devDependencies": {
"@cycle/rxjs-run": "^10.1.0",
"@cycle/state": "^1.0.0",
"babel-preset-env": "^1.7.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"cp-cli": "^1.1.2",
"cycle-onionify": "^6.1.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"mkdirp": "^0.5.1",
"opn-cli": "^4.0.0",
"prettier": "^1.15.3",
"release-it": "^8.2.0",
"rimraf": "^2.6.2",
"rxjs": "^6.3.3",
"snabbdom": "^0.7.2",
"typedoc": "^0.13.0",
"typescript": "^3.2.1"
}
}