-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 965 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
{
"name": "article-json",
"version": "0.0.0",
"description": "json format describing articles",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && mkdir -p dist && babel lib --out-dir dist",
"test": "ava",
"prepublish": "npm run build",
"watch": "rm -rf dist && mkdir -p dist && babel -w lib --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/article-json.git"
},
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/article-json/issues"
},
"homepage": "https://github.com/micnews/article-json#readme",
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-preset-es2015": "^6.6.0",
"lodash.omit": "^4.2.0",
"semistandard": "^7.0.5",
"snazzy": "^2.0.1"
},
"dependencies": {
"is-my-json-valid": "^2.12.4"
},
"directories": {
"test": "test"
}
}