-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
46
47
48
{
"name": "@fynyky/elementary",
"version": "1.0.0",
"description": "Simple reactive front-end library",
"type": "module",
"source": "src/index.js",
"main": "dist/index.js",
"targets": {
"main": {
"context": "browser",
"includeNodeModules": true,
"optimize": true
}
},
"files": [
"dist/index.*"
],
"dependencies": {
"reactorjs": "^2.1.1"
},
"devDependencies": {
"mocha": "^10.2.0",
"parcel": "^2.8.1",
"standard": "^17.1.0"
},
"scripts": {
"lint": "standard --fix",
"build": "rm -rf dist/ && parcel build",
"prepare": "npm run build",
"test": "standard",
"browserTest": "parcel serve test/elementary.test.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fynyky/elementary.git"
},
"keywords": [
"reactive",
"ui",
"front-end"
],
"author": "Li Hongyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/fynyky/elementary/issues"
},
"homepage": "https://github.com/fynyky/elementary#readme"
}