-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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
49
{
"name": "@homebots/elements",
"version": "0.6.0",
"description": "Microframework to write modern web apps using latest ES/HTML/CSS stuff",
"main": "./index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist/",
"test": "karma start --single-run",
"tdd": "while (true) do karma start --auto-watch --reporters dots; sleep 5; done",
"build": "npm run clean && tsc --project ./tsconfig.json && npm run rollup",
"watch": "nodemon -e ts,json,js -w src -x npm run build",
"rollup": "./node_modules/.bin/rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/homebots/elements.git"
},
"author": "Darlan Alves <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.0.1",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.7.16",
"jasmine": "^4.4.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"karma-typescript": "^5.5.3",
"karma-typescript-es6-transform": "^5.5.3",
"lodash.clone": "^4.5.0",
"lodash.isequal": "^4.5.0",
"nodemon": "^2.0.19",
"puppeteer": "^17.1.3",
"reflect-metadata": "^0.1.13",
"rollup": "^2.79.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"zone.js": "^0.11.8"
},
"dependencies": {
"@homebots/injector": "^1.5.0"
},
"publishConfig": {
"access": "public"
}
}