-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.51 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
{
"name": "relateify",
"version": "0.1.1",
"description": "Passthrough transform, handling @related-file annotations",
"main": "index.js",
"scripts": {
"test": "eslint . && flow check && BABEL_ENV=coverage nyc mocha",
"build": "babel src --copy-files --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/wbyoung/relateify"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"coverage/**",
"dist/**"
],
"reporter": [
"lcov",
"html",
"text"
],
"all": true,
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"sourceMap": false,
"instrument": false,
"temp-directory (pending-accepted-pr)": "coverage/nyc"
},
"author": "Whitney Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbyoung/relateify/issues"
},
"keywords": [
"browserify",
"browserify-transform"
],
"homepage": "https://github.com/wbyoung/relateify",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^8.0.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.18.0",
"chai": "^4.0.1",
"eslint": "^4.1.0",
"eslint-plugin-flowtype": "^2.29.2",
"flow-bin": "^0.61.0",
"mocha": "^5.0.0",
"nyc": "^11.0.0"
},
"dependencies": {
"through2": "^2.0.3"
}
}