-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 909 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
{
"name": "story-json-to-video",
"version": "0.1.0",
"description": "Compile story-json documents into videos",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "tape test/*-test.js && npm run lint"
},
"bin": {
"story-json-to-video": "./bin/cli.js"
},
"author": "Mic Network Inc.",
"license": "MIT",
"dependencies": {
"canvas": "^2.0.0-alpha.9",
"got": "^8.0.3",
"minimist": "^1.2.0",
"multi-integer-range": "^4.0.4",
"split": "^1.0.1",
"tape": "^4.8.0",
"yoga-layout": "^1.9.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-mic": "^1.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.43.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3"
}
}