-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 874 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": "script-ui",
"version": "0.0.1-rc1",
"description": "Write React without JSX",
"main": "public/index.js",
"umd:main": "public/index.umd.js",
"module": "public/index.module.js",
"source": "src/view/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel demo/index.html",
"prepublishOnly": "microbundle --name=ScriptUI --globals react=React"
},
"files": [
"public"
],
"author": "Andrew Nater",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anater/ScriptUI.git"
},
"devDependencies": {
"microbundle": "^0.11.0",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"emotion": "^10.0.14"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"emotion": "^10.0.14"
}
}