-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "url-sweatshirt",
"author": "Ryan Fitzgerald <ryan.fitzgerald@brigade.com>",
"version": "1.0.0",
"main": "dist/url-sweatshirt.js",
"description": "Wrap your URLs in a warm layer of helper functions",
"scripts": {
"test": "./node_modules/.bin/eslint . && jest",
"js": "babel --modules common --out-file dist/url-sweatshirt.js ./index.js",
"prepublish": "npm run js"
},
"jest": {
"scriptPreprocessor": "spec/jest.conf.js",
"testPathIgnorePatterns": [
"/node_modules/",
"./spec/jest.conf.js"
],
"testDirectoryName": "spec"
},
"dependencies": {},
"devDependencies": {
"babel": "^5.8.23",
"eslint": "^1.3.0",
"eslint-config-brigade": "^1.6.1",
"jest-cli": "^0.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/brigade/url-sweatshirt.git"
},
"keywords": [
"url",
"generation",
"template"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/brigade/url-sweatshirt/issues"
},
"homepage": "https://github.com/brigade/url-sweatshirt"
}