-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
99 lines (99 loc) · 2.73 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "cyclic-router",
"version": "6.0.0",
"description": "A router driver built for Cycle.js",
"main": "lib/index.js",
"module": "lib/es6/index.js",
"typings": "lib/index.d.ts",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclejs-community/cyclic-router.git"
},
"contributors": [
{
"name": "Tylor Steinberger",
"email": "[email protected]"
},
{
"name": "Nikhil Tilwalli",
"email": "[email protected]"
},
{
"name": "Jan van Brügge",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclejs-community/cyclic-router/issues"
},
"homepage": "https://github.com/cyclejs-community/cyclic-router#readme",
"peerDependencies": {
"@cycle/history": "*",
"history": "*"
},
"dependencies": {
"@cycle/run": "*"
},
"devDependencies": {
"@cycle/history": "^7.1.0",
"@cycle/rxjs-run": "^10.2.0",
"@types/history": "^4.6.0",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.19",
"assert": "^1.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"ghooks": "^1.2.1",
"husky": "^1.2.0",
"lint-staged": "^4.0.3",
"mkdirp": "^0.5.1",
"mocha": "^3.4.2",
"prettier": "^1.5.3",
"release-it": "^9.0.0",
"rxjs": "^6.3.3",
"switch-path": "^1.2.0",
"testem": "^1.16.1",
"tslint": "^3.10.2",
"typescript": "^3.2.2",
"uglify-js": "^3.0.12",
"validate-commit-message": "^3.0.1",
"xstream": "^11.0.0"
},
"lint-staged": {
"{test,src}/**/*.{js,jsx,ts,tsx}": [
"prettier --tab-width 4 --single-quote --write",
"git add"
]
},
"scripts": {
"format": "prettier --tab-width 4 --single-quote --write '{src,test}/**/*.{js,ts,tsx}'",
"lint": "tslint -c tslint.json src/*.ts src/**/*.ts",
"test-node": "mocha -r babel-register test/index.js",
"test-browser": "testem",
"pretest": "npm run lib",
"test": "npm run lint && npm run lib && npm run test-node",
"pretest-ci": "npm run lib",
"test-ci": "npm run lint && npm run test-node && testem ci",
"predist": "rm -rf dist/ && mkdirp dist/",
"lib": "npm run lib:cjs && npm run lib:es6",
"lib:cjs": "tsc --module commonjs --outDir ./lib",
"lib:es6": "tsc --module es6 --outDir ./lib/es6",
"start": "npm install && npm prune",
"prepublishOnly": "npm run lib",
"release-patch": "release-it patch",
"release-minor": "release-it minor",
"release-major": "release-it major"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg $2",
"pre-commit": "lint-staged"
}
}
}