-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "@prostory/edelweiss",
"version": "1.8.0",
"description": "Small framework that builds HTML from JS.",
"keywords": [
"Edelweiss",
"UI framework"
],
"main": "./index.js",
"exports": {
".": "./index.js",
"./index": "./index.js",
"./index.js": "./index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/YevhenKap/edelweiss"
},
"scripts": {
"clean": "rm -r build/*",
"build": "npm run clean; rollup --config; npm run copy; npm run test",
"copy": "npm run copy:docs; npm run copy:settings; npm run copy:license",
"copy:docs": "cp README.md build/; cp CHANGELOG.md build/",
"copy:license": "cp LICENSE build/",
"copy:settings": "cp package.json build/",
"release": "npm run build; npm publish build/ --access public",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"author": "Kapelianovych Yevhen",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.0",
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}