-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 979 Bytes
/
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
{
"name": "anyify",
"description": "Browserify transform for anything",
"main": "lib",
"scripts": {
"prepublish": "make",
"test": "make test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/quarterto/Anyify.git"
},
"keywords": [
"browserify",
"transform"
],
"author": "Matt Brennan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/quarterto/Anyify/issues"
},
"homepage": "https://github.com/quarterto/Anyify",
"dependencies": {
"through": "^2.3.7",
"unstream": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.5.0",
"concat-stream": "^1.5.0",
"dirty-chai": "^1.2.1",
"from2-array": "0.0.4",
"mocha": "^3.0.0",
"semantic-release": "^4.3.5"
},
"babel": {
"presets": [
"es2015"
]
}
}