-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·35 lines (35 loc) · 862 Bytes
/
package.json
File metadata and controls
executable file
·35 lines (35 loc) · 862 Bytes
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": "react-meme-renderer",
"version": "1.0.0",
"description": "Meme renderer for React",
"main": "index.js",
"author": "Thomas Barras <thomas.barras26@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=8.1.2"
},
"dependencies": {
"canvas": "^2.0.0-alpha.12",
"react": "^16.4.0",
"react-reconciler": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^21.2.1"
},
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/babel src -d build",
"example": "./node_modules/.bin/babel-node ./example/App.js",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch"
},
"jest": {
"modulePathIgnorePatterns": [
"/__tests__/utils/"
]
}
}