-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 749 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 749 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
{
"name": "isomorphic-jsx",
"version": "0.3.0",
"description": "A package for using JSX in Node.js",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage"
},
"keywords": [
"jsx",
"isomorphic",
"isomorphic-jsx",
"declarative",
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/TheKnarf/isomorphic-jsx"
},
"author": "Frank Lyder Bredland <fl@nyggen.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"coveralls": "^3.0.2",
"jest": "^26.0.1"
},
"files": [
"./src/index.js"
]
}