-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "@fynyky/elemental",
"version": "0.0.2",
"description": "Simple reactive ui building without frameworks",
"type": "module",
"main": "dist/main.js",
"browser": "dist/browser.js",
"source": "src/index.js",
"files": [ "dist/**/*" ],
"scripts": {
"lint": "standard --fix",
"build": "rm -rf dist/ && parcel build",
"pretest": "npm run lint && npm run build",
"test": "parcel serve test/test.html",
"prepack": "npm run lint && npm run build"
},
"dependencies": {
"reactorjs": "^3.0.0"
},
"devDependencies": {
"parcel": "^2.8.1",
"standard": "^17.0.0"
},
"targets": {
"browser": {
"context": "browser",
"includeNodeModules": true,
"optimize": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fynyky/elemental.git"
},
"bugs": {
"url": "https://github.com/fynyky/elemental/issues"
},
"homepage": "https://github.com/fynyky/elemental#readme",
"author": "Li Hongyi",
"license": "MIT"
}