-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"author": {
"name": "Contributors",
"url": "https://github.com/kirkstrobeck/filepath-to-title/graphs/contributors"
},
"bugs": {
"url": "https://github.com/kirkstrobeck/filepath-to-title/issues"
},
"description": "Take any file path and turn it into a fancy title",
"files": [
"dist"
],
"jest": {
"collectCoverage": true,
"collectCoverageFrom" : ["lib/**/*.{js,jsx}"]
},
"homepage": "https://github.com/kirkstrobeck/filepath-to-title",
"license": "Apache-2.0",
"main": "dist/index.js",
"name": "filepath-to-title",
"repository": {
"type": "git",
"url": "git+https://github.com/kirkstrobeck/filepath-to-title.git"
},
"scripts": {
"build:prod": "NODE_ENV=production webpack",
"build:watch": "webpack --watch",
"build": "webpack",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint --cache --ignore-path .gitignore --ext .js --ext .jsx .",
"test": "jest"
},
"version": "0.1.12",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.0",
"eslint": "^4.11.0",
"jest": "^21.2.1",
"title-case": "^2.1.1",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1"
}
}