forked from revivek/oy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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
{
"name": "oy-vey",
"description": "React utilities for building server-side email templates.",
"version": "0.8.0",
"keywords": [
"react",
"email"
],
"author": "Vivek Patel <patelvivek@google.com>",
"bugs": "https://github.com/oysterbooks/oy/issues",
"main": "lib/Oy.js",
"repository": {
"type": "git",
"url": "https://github.com/oysterbooks/oy"
},
"dependencies": {
"clean-css": "^3.4.10",
"object-assign": "^4.0.1",
"sanitizer": "^0.1.3"
},
"peerDependencies": {
"react": "^15.4.0",
"react-dom": "^15.4.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0-beta.6",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.4.0",
"eslint-plugin-react": "^4.2.3",
"jasmine": "^2.3.1",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.0",
"react-dom": "^15.4.0"
},
"scripts": {
"compile": "rm -rf lib/; babel -d lib/ src/",
"test": "npm run compile; npm run lint; NODE_ENV=test JASMINE_CONFIG_PATH=jasmine.json jasmine",
"lint": "node_modules/eslint/bin/eslint.js src"
}
}