-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "am-path-helpers",
"version": "0.2.1",
"description": "Helpers for App Manager that provide enhanced tools for path matching",
"main": "index.js",
"scripts": {
"coverage": "nyc mocha ./test/*.test.js",
"clean": "rimraf ./es5 ./dist",
"compile": "babel lib -d es5",
"bundle": "webpack --mode=development",
"bundle-prod": "webpack --mode=production",
"ci": "npm run coverage && npm run clean && npm run compile && npm run bundle-prod",
"watch": "babel lib -d es5 --watch",
"lint": "eslint --ext .js .",
"test": "mocha ./test/*.test.js",
"typecheck": "flow check",
"precommit": "npm run lint",
"prepush": "npm run coverage"
},
"files": [
"es5",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tomruttle/am-path-helpers.git"
},
"author": "Tom Ruttle <tom@tomruttle.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tomruttle/am-path-helpers/issues"
},
"homepage": "https://github.com/tomruttle/am-path-helpers#readme",
"nyc": {
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 100,
"branches": 70,
"include": [
"lib/**"
],
"reporter": [
"cobertura",
"html"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"env-test": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-mocha": "^5.0.0",
"flow-bin": "^0.72.0",
"husky": "^0.14.3",
"mocha": "^5.1.1",
"nyc": "^11.7.3",
"rimraf": "^2.6.2",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
},
"dependencies": {
"path-to-regexp": "^2.2.1",
"qs": "^6.5.2"
}
}