-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
78 lines (78 loc) · 1.9 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "story-json-to-amp",
"version": "2.0.1",
"description": "Convert story JSON to STAMP HTML.",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && babel ./lib -d ./dist",
"watch": "npm run clean && babel ./lib -w -d ./dist",
"lint": "miclint --flow | snazzy",
"flow": "flow",
"prepublish": "npm run build",
"test": "run-s lint flow test:code",
"test:code": "NODE_ENV=test nyc babel-tape-runner ./test.js | mic-tap-format"
},
"bin": {
"story-json-to-amp": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/story-json-to-stamp.git"
},
"keywords": [
"story",
"story json",
"stamp"
],
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/story-json-to-stamp/issues"
},
"homepage": "https://github.com/micnews/story-json-to-stamp#readme",
"nyc": {
"extension": [
".js"
],
"exclude": [
"**/node_modules/**"
],
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-tape-runner": "^2.0.1",
"flow-bin": "^0.53.1",
"mic-tap-format": "^1.0.3",
"miclint": "^4.2.2",
"npm-run-all": "^4.1.3",
"nyc": "^11.9.0",
"snazzy": "^7.1.1",
"tape": "^4.9.1"
},
"dependencies": {
"autoprefixer": "^7.1.5",
"condense-newlines": "^0.2.1",
"dasherize": "^2.0.0",
"html-tag": "^1.0.0",
"immutable-object-methods": "^1.3.2",
"js-beautify": "1.6.14",
"lodash.flow": "^3.5.0",
"minimist": "^1.2.0",
"postcss": "^6.0.23",
"postcss-js": "^1.0.1"
},
"miclint": {
"ignore": [
"flow-typed"
]
}
}