This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.53 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
{
"name": "@mytiki/tiki-sdk-js",
"version": "2.1.4",
"description": "JS SDK for client-side integration with TIKI",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"test": "npm run test:dart; npm run test:js;",
"test:js": "jest ./test/js --silent",
"test:dart": "dart test",
"lint:js": "eslint src/*.ts",
"build": "npm run build:dart; npm run build:js;",
"build:js": "rollup -c",
"build:dart": "dart compile js web/main.dart -O4 -o src/tiki-wrapper.cjs",
"watch:js": "rollup -c -w",
"watch:js-test": "jest --watch ./test/js --silent",
"clean": "npm run clean:dart; npm run clean:js",
"clean:js": "rm -rf dist rm -rf example/dist",
"clean:dart": "rm -f src/tiki-wrapper.cjs src/tiki-wrapper.cjs.deps src/tiki-wrapper.cjs.map"
},
"repository": {
"type": "git",
"url": "https://github.com/tiki/tiki-sdk-js"
},
"keywords": [
"TIKI",
"Data Licensing",
"TIKI JS SDK"
],
"author": {
"name": "Tiki inc.",
"email": "[email protected]",
"url": "https://mytiki.com"
},
"bugs": {
"url": "https://github.com/tiki/tiki-sdk-js/issues"
},
"homepage": "https://github.com/tiki/tiki-sdk-js#readme",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@jackfranklin/rollup-plugin-markdown": "^0.4.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-plugin-transform-html-import-to-string": "^2.0.0",
"cssnano": "^6.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-junit": "^16.0.0",
"postcss": "^8.4.21",
"postcss-preset-env": "^8.0.1",
"postcss-reporter": "^7.0.5",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"rollup-plugin-postcss": "^4.0.2",
"stylelint": "^15.3.0",
"stylelint-config-standard": "^34.0.0",
"ts-jest": "^29.0.5",
"typedoc": "^0.24.4",
"typescript": "^5.0.3"
},
"files": [
"dist/**/*"
],
"types:": "dist/index.d.ts"
}