-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"name": "stein-expedite",
"version": "0.0.4",
"main": "index.js",
"description": "Use plain HTML to connect your website to Google Sheets",
"author": "Stein <hello@steinhq.com>",
"homepage": "https://steinhq.com/",
"license": "MIT",
"unpkg": "dist/index.js",
"keywords": [
"stein",
"google sheets",
"form",
"handlebars",
"database",
"template",
"api"
],
"repository": {
"type": "git",
"url": "git://github.com/SteinHQ/Expedite.git"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"babel-plugin-istanbul": "^6.0.0",
"codacy-coverage": "^3.4.0",
"concurrently": "^6.2.0",
"fetch-mock": "^9.11.0",
"http-server": "^0.12.3",
"jasmine-core": "^3.8.0",
"karma": "^6.3.4",
"karma-babel-preprocessor": "^8.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"live-server": "^1.2.1",
"opn-cli": "^5.0.0",
"shx": "^0.3.3",
"terser": "^5.7.1",
"wait-on": "^6.0.0"
},
"scripts": {
"launch-test": "wait-on http://localhost:8080 && open-cli http://localhost:8080/SpecRunner.html",
"start-test-server": "live-server",
"run-tests-browser": "concurrently \"yarn start-test-server\" \"yarn launch-test\"",
"run-tests": "karma start karma.conf.js",
"build": "babel index.js --out-dir dist && terser dist/index.js --source-map -m -c -o dist/index.js",
"report-coverage": "shx cat coverage/report-lcov/lcov.info | codacy-coverage --token 1f1b4316eb9147dc89c5ee662202c7eb",
"test": "yarn run-tests && yarn report-coverage"
}
}