-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "oy-vey",
"description": "React utilities for building server-side email templates.",
"version": "0.12.1",
"keywords": [
"react",
"email"
],
"author": "Vivek Patel <patelvivek@google.com>",
"bugs": "https://github.com/oysterbooks/oy/issues",
"main": "lib/Oy.js",
"types": "./index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oysterbooks/oy"
},
"dependencies": {
"clean-css": "^4.0.12",
"object-assign": "^4.1.1",
"sanitizer": "^0.1.3"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.8.0",
"eslint-plugin-react": "^7.4.0",
"jasmine": "^2.3.1",
"prop-types": "^15.6.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-test-renderer": "^17.0.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"
}
}