-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.23 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.23 KB
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
{
"name": "@funjs/route-parser",
"version": "1.2.0",
"description": "Simple and fast functional route parser...",
"main": "./src/index.js",
"module": "./dist/index.js",
"repository": "git@github.com:fun-js/route-parser.git",
"author": "Mauro Junior <mauropereirajr@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"router",
"functional",
"url",
"matching",
"routing",
"route",
"regex",
"match"
],
"scripts": {
"start": "npm run test",
"commit": "git add -A && git-cz && git push",
"test": "npm run lint && nyc --check-coverage mocha ./test/*.js",
"test:watch": "mocha ./test/*.js --watch",
"lint": "eslint --ignore-path .gitignore .",
"lint:watch": "esw -w --ignore-path .gitignore .",
"coverage": "nyc report --reporter=text-lcov | codecov",
"coverage:summary": "nyc report",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "cross-env NODE_ENV=production webpack --output-filename index.umd.min.js",
"setup": "npm install && npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.24.1",
"babel-loader": "^6.3.2",
"babel-preset-env": "^1.4.0",
"babili-webpack-plugin": "^0.0.11",
"chai": "^3.5.0",
"codecov": "^2.1.0",
"commitizen": "^2.9.6",
"cross-env": "^4.0.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-watch": "^3.0.0",
"ghooks": "^2.0.0",
"mocha": "^3.2.0",
"multiview": "^2.3.1",
"npm-run-all": "^4.0.2",
"nyc": "^10.1.2",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.2",
"webpack": "^2.2.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"nyc": {
"lines": 20,
"statements": 20,
"functions": 20,
"branches": 20,
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {}
}