-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.66 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
{
"name": "to-js",
"version": "0.0.6",
"description": "A simple conversion library to convert one thing into something else",
"main": "dist/to.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjbenton/to.git"
},
"author": "Tyler Benton <tjbenton21@gmail.com> (https://github.com/tjbenton)",
"license": "ISC",
"bugs": {
"url": "https://github.com/tjbenton/to/issues"
},
"homepage": "https://github.com/tjbenton/to#readme",
"dependencies": {
"babel-runtime": "^6.6.1",
"change-case": "^2.3.1",
"clone": "^1.0.2",
"is_js": "^0.8.0",
"marked": "^0.3.5"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.7.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-regenerator": "^6.6.5",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.6.5",
"coveralls": "^2.11.9",
"es6-promisify": "^4.0.0",
"eslint": "^2.5.3",
"eslint-plugin-babel": "^3.1.0",
"fs-extra": "^0.30.0",
"nyc": "^6.4.3",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"syntax-async-functions",
"transform-async-to-generator",
"transform-decorators-legacy",
"transform-regenerator",
"transform-runtime"
]
},
"nyc": {
"exclude": [
"dist/**",
"node_modules/**",
".*"
]
}
}