-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "avalynx-ref",
"title": "AvalynxRef",
"description": "AvalynxRef is a Ref implementation for updating elements with a value like React's Ref or Vue's Ref.",
"version": "0.0.3",
"license": "MIT",
"main": "dist/js/avalynx-ref.js",
"module": "dist/js/avalynx-ref.esm.js",
"files": [
"dist/js/avalynx-ref.js",
"dist/js/avalynx-ref.esm.js"
],
"keywords": [
"avalynx",
"ref",
"vue",
"react"
],
"ignore": [
"package.json"
],
"author": {
"name": "Juergen Schwind an the Avalynx-Ref authors",
"url": "https://github.com/avalynx/avalynx-ref/graphs/contributors"
},
"homepage": "https://github.com/avalynx/",
"repository": {
"type": "git",
"url": "git+https://github.com/avalynx/avalynx-ref.git"
},
"bugs": {
"url": "https://github.com/avalynx/avalynx-ref/issues"
},
"scripts": {
"test": "jest",
"build": "shx rm -rf dist; shx mkdir -p dist/js/; shx cp src/js/avalynx-ref.js dist/js/avalynx-ref.js; shx cp src/js/avalynx-ref.js dist/js/avalynx-ref.esm.js; node build.js dist/js/avalynx-ref.esm.js;"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"babel-jest": "^29",
"jest": "^29",
"jest-environment-jsdom": "^29",
"shelljs": "^0",
"shx": "^0"
}
}