-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "article-json-to-apple-news",
"version": "4.0.4",
"description": "Render article JSON in the Apple News format",
"main": "dist/index.js",
"scripts": {
"lint": "semistandard | snazzy",
"test": "ava && npm run lint",
"api-test": "NODE_ENV=test ava api-test/index.js",
"test:coverage": "nyc ava",
"build": "babel lib --out-dir dist",
"watch": "babel lib --out-dir dist --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/article-json-to-apple-news.git"
},
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/article-json-to-apple-news/issues"
},
"homepage": "https://github.com/micnews/article-json-to-apple-news#readme",
"devDependencies": {
"apple-news": "^1.0.0",
"ava": "^0.17.0",
"babel-cli": "^6.4.5",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.3.13",
"chalk": "^1.1.3",
"mkdirp": "^0.5.1",
"nyc": "^10.0.0",
"semistandard": "^9.0.0",
"snazzy": "^5.0.0"
},
"dependencies": {
"lodash.startswith": "^4.0.1",
"moment": "^2.12.0",
"object-assign": "^4.0.1",
"walk-apple-news-format": "^1.0.0"
}
}