-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 2.33 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
{
"name": "cyclejs-sortable",
"version": "3.0.4",
"description": "Makes all children of a vdom-node sortable via drag and drop",
"main": "build/cjs/src/makeSortable.js",
"module": "build/es6/src/makeSortable.js",
"typings": "build/cjs/src/makeSortable.d.ts",
"types": "build/cjs/src/makeSortable.d.ts",
"lint-staged": {
"*.{ts,tsx}": [
"prettier --tab-width 4 --single-quote --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"format": "prettier --tab-width 4 --single-quote --write './{examples,src}/**/*.{ts,tsx}'",
"build": "tsc -d --outDir 'build/cjs' --module commonjs && tsc -d --outDir 'build/es6' --module es6",
"build:examples": "tsc",
"documentation": "typedoc --out docs src && touch docs/.nojekyll",
"prepublishOnly": "npm run build && npm run documentation && cp-cli examples docs/",
"examples": "npm run build:examples && npm run examples:simple && npm run examples:horizontal && npm run examples:updateEvent",
"examples:simple": "browserify build/examples/simple/src/index.js -o examples/simple/index.js && open-cli examples/simple/index.html",
"examples:horizontal": "browserify build/examples/horizontal/src/index.js -o examples/horizontal/index.js && open-cli examples/horizontal/index.html",
"examples:updateEvent": "browserify build/examples/updateEvent/src/index.js -o examples/updateEvent/index.js && open-cli examples/updateEvent/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperManitu/cyclejs-sortable.git"
},
"keywords": [
"cyclejs",
"sortable"
],
"author": "Jan van Brügge",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuperManitu/cyclejs-sortable/issues"
},
"homepage": "https://github.com/SuperManitu/cyclejs-sortable#readme",
"peerDepenencies": {
"@cycle/dom": ">=20.0.0"
},
"dependencies": {
"@cycle/run": "^4.1.0",
"xstream": "^11.2.0"
},
"devDependencies": {
"@cycle/dom": "^20.4.0",
"@cycle/rxjs-run": "^8.0.0",
"@types/handlebars": "^4.0.37",
"browserify": "^16.2.0",
"cp-cli": "^1.1.2",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"open-cli": "^1.0.5",
"prettier": "^1.12.1",
"release-it": "^7.4.7",
"rimraf": "^2.6.2",
"rxjs": "^5.5.10",
"typedoc": "^0.11.1",
"typescript": "2.8.3"
}
}