This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
74 lines (74 loc) · 2.09 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "riotgear",
"version": "3.6.0",
"description": "The open source component library for RiotJS",
"main": "dist/rg.min.js",
"files": [
"dist"
],
"scripts": {
"preriot": "rm -rf dist",
"riot": "riot tags dist --type es6",
"postriot": "riot demo --type es6",
"minify": "uglifyjs --output dist/rg.js dist/**/*",
"uglify": "uglifyjs --compress --mangle --screw-ie8 --comment false --output dist/rg.min.js dist/**/*",
"test": "karma start",
"_test2": "RIOT_VERSION=2.6.9 yarn test",
"_test3": "RIOT_VERSION=3.13.2 yarn test",
"_test-all": "yarn test && yarn _test2 && yarn _test3",
"test2": "yarn run dev && yarn _test2",
"test3": "yarn run dev && yarn _test3",
"dev": "npm run riot && npm run minify && npm run uglify",
"build": "npm run dev && npm run _test-all",
"demo": "mkdir -p _dist; cp -r demo/static/* _dist; yarn parcel serve demo/index.html --out-dir _dist"
},
"repository": {
"type": "git",
"url": "https://github.com/RiotGear/rg.git"
},
"keywords": [
"riotjs",
"riot",
"webcomponents",
"html5",
"es6",
"javascript",
"tags",
"components",
"riotgear"
],
"author": "Gregory Pratt",
"license": "MIT",
"bugs": {
"url": "https://github.com/RiotGear/rg/issues"
},
"homepage": "https://riotgear.js.org/",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"ace-builds": "^1.2.2",
"chai": "^4.2.0",
"chart.js": "1.0.2",
"commonmark": "^0.29.0",
"jquery": "^3.4.1",
"karma": "^4.2.0",
"karma-babel-preprocessor": "^8.0.1",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-riot": "^2.0.0",
"karma-sinon-chai": "^2.0.2",
"mocha": "^6.2.0",
"mocha-snapshot": "^1.0.0",
"moment": "^2.24.0",
"normalize.css": "^8.0.1",
"parcel": "^1.12.3",
"parcel-plugin-riot": "^2.1.0",
"puppeteer": "^1.19.0",
"riot": "3.13.2",
"sinon": "^7.3.2",
"sinon-chai": "2.8.0",
"uglify-es": "^3.3.9"
}
}