-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.4 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
{
"name": "@tradeshift/io",
"description": "ts.io - Tradeshift App Messaging Library",
"scripts": {
"prebuild": "mkdir -p ./lib && mkdir -p ./test/jasmine/spec && rm -rf ./lib/* && rm -rf ./test/jasmine/spec/*",
"build": "rollup -c",
"dev": "rollup -c -w",
"prelint": "prettier --version && prettier --write --config .prettierrc \"src/**/*.{js,less,json}\"",
"lint": "eslint --version && eslint --config .eslintrc --color src && eslint --config .eslintrc --color 'test/{lib,spec}/*.js'",
"postlint": "prettier --write --config .prettierrc-md \"*.md\"",
"pretest": "npm run lint && npm run build",
"test": "node test/tasks/test-runner.js --desktop --color=full",
"test:local:server": "node test/tasks/test-runner.js --local",
"test:local": "run-p --aggregate-output test:local:server dev",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/runtime": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"browserstack-runner": "^0.9.4",
"core-js": "^3.30.2",
"debug": "^4.3.4",
"eslint": "^8.40.0",
"eslint-config-tradeshift": "^9.0.0",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rollup": "^4.0.0",
"semantic-release": "^23.0.0"
},
"dependencies": {
"uuid": "^9.0.0"
},
"publishConfig": {
"access": "public"
},
"version": "0.0.0-semantically-released",
"main": "lib/ts.io-cjs.js",
"module": "lib/ts.io-esm.js",
"browser": "lib/ts.io-umd.js",
"repository": "github:Tradeshift/io",
"author": "Daniel Spitzer <dsp@tradeshift.com>",
"contributors": [
"Wired Earp <jmo@tradeshift.com> (https://github.com/wiredearp)",
"Leo Zhang <lza@tradeshift.com> (https://github.com/zdlm)",
"Daniel Spitzer <dsp@tradeshift.com> (https://github.com/sampi)"
],
"bugs": {
"url": "https://github.com/Tradeshift/io/issues",
"email": "dsp@tradeshift.com"
},
"homepage": "https://github.com/Tradeshift/io#readme",
"license": "SEE LICENSE IN LICENSE.md",
"keywords": [
"tradeshift",
"io",
"ts",
"ts.io",
"app",
"apps",
"postmessage",
"iframe",
"messaging",
"library",
"messaging-library",
"api",
"api-client",
"api-server",
"docs",
"broker"
]
}