This repository has been archived by the owner on Jan 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 4.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@meatspace/webcomponents",
"version": "2.0.5",
"description": "A web component library by MeatSpace",
"main": "index.js",
"files": [
"bundle.js"
],
"publishConfig": {
"access": "public"
},
"browserslist": "> 0.25%, not dead, ie >= 6",
"keywords": [
"webcomponents",
"web components",
"web component",
"webcomponent",
"custom elements"
],
"scripts": {
"runner": "node test/runner.js",
"local-runner": "node -r dotenv/config test/runner.js",
"mtest": "./node_modules/.bin/mocha-headless-chrome -f ./unit_tests/meat-input.html || exit 0",
"wintest": "for %f in (./unit_tests/*.html) do ./node_modules/.bin/mocha-headless-chrome -f (./unit_tests/%f)",
"lintest": "./node_modules/.bin/mocha-headless-chrome -f ./unit_tests/*.html -a no-sandbox",
"utest": "cd ./unit_tests && npm run all",
"utest-core-hello": "cd ./unit_tests && npm run corehello",
"utest-meat-button": "cd ./unit_tests && npm run meatbutton",
"utest-meat-input": "cd ./unit_tests && npm run meatinput",
"utest-meat-card": "cd ./unit_tests && npm run meatcard",
"utest-meat-link": "cd ./unit_tests && npm run meatlink",
"utest-meat-image": "cd ./unit_tests && npm run meatimage",
"generate-jsdocs": "./node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"lint": "./node_modules/.bin/eslint --fix web_components",
"pipe": "cd scripts && pipe.sh",
"pipe-mac": "./scripts/pipe.sh",
"pipe-release-mac": "./scripts/release.sh",
"pipe-release": "cd scripts && release.sh",
"babel": "./node_modules/.bin/babel web_components --out-dir lib",
"build": "./node_modules/rollup/bin/rollup -c",
"report": "./node_modules/nyc/bin/nyc.js report --reporter=lcov",
"serve": "./node_modules/http-server/bin/http-server &",
"test": "npm run serve && npm run utest",
"post-test": "pkill -f http-server",
"instrument": "./node_modules/nyc/bin/nyc.js instrument ./lib/ ./instrumented",
"coverage-display": "./node_modules/nyc/bin/nyc.js report",
"local-test": "npm-run-all build instrument test coverage-display post-test",
"local-test-hello": "npm-run-all build instrument serve utest-core-hello coverage-display post-test",
"local-test-button": "npm-run-all build instrument serve utest-meat-button coverage-display post-test",
"local-test-input": "npm-run-all build instrument serve utest-meat-input coverage-display post-test",
"local-test-card": "npm-run-all build instrument serve utest-meat-card coverage-display post-test",
"local-test-link": "npm-run-all build instrument serve utest-meat-link coverage-display post-test",
"local-test-image": "npm-run-all build instrument serve utest-meat-image coverage-display post-test",
"clean": "rm -rf instrumented && rm -rf lib && rm bundle.js",
"local-testcafe": "npm-run-all build instrument serve local-runner post-test"
},
"unpkg": "bundle.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ucsd-cse112/Team2.git"
},
"author": "Team MeatSpace",
"license": "MIT",
"bugs": {
"url": "https://github.com/ucsd-cse112/Team2/issues"
},
"homepage": "https://meat-space.org",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@storybook/addon-knobs": "^5.0.11",
"@storybook/html": "^5.0.11",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chromedriver": "^2.41.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"http-server": "^0.11.1",
"jscover": "^1.0.0",
"jsdoc": "^3.6.2",
"minami": "^1.2.3",
"mocha": "^6.1.4",
"mocha-chrome": "^2.0.0",
"mocha-headless-chrome": "^2.0.2",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "1.17.0",
"puppeteer": "^1.17.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-postcss": "^2.0.3",
"selenium-webdriver": "^4.0.0-alpha.1",
"testcafe": "^1.1.4",
"testcafe-browser-provider-browserstack": "^1.8.0",
"testcafe-reporter-slack": "0.0.6"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"acorn": "^6.1.1",
"dotenv": "^8.0.0",
"rollup": "^1.14.4"
}
}