This repository has been archived by the owner on Nov 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
50 lines (50 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
{
"name": "transmat",
"version": "0.2.1",
"description": "User interaction across applications using the DataTransfer API",
"main": "./lib/index.js",
"umd:main": "./lib/index.umd.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": "github:google/transmat",
"homepage": "https://google.github.io/transmat",
"bugs": "https://github.com/google/transmat/issues",
"author": "Jorik Tangelder <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.1.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@types/jasmine": "^3.6.4",
"@types/leaflet": "^1.5.23",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"jasmine": "^3.6.4",
"jasmine-core": "^3.6.0",
"js-green-licenses": "^3.0.0",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.4.0",
"rollup": "^2.47.0",
"snowpack": "^3.0.13",
"typescript": "^4.2.2"
},
"scripts": {
"dev": "snowpack dev",
"test": "karma start karma.conf.js",
"lint": "gts lint experiments/ src/",
"clean": "gts clean experiments/ src/ && rm -rf ./coverage",
"compile": "tsc",
"bundle-umd": "rollup lib/index.js --file lib/index.umd.js -p commonjs --format umd --name transmat",
"fix": "gts fix experiments/ src/",
"license": "$GOPATH/bin/addlicense -c \"Google LLC\" -l apache ./src ./experiments",
"license-check": "jsgl --local .",
"prepare": "npm run compile",
"prepublish": "npm run license-check && npm run lint && npm run clean && npm run compile && npm run bundle-umd"
},
"dependencies": {
"schema-dts": "^0.8.2"
}
}