forked from Tradeshift/io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.65 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
{
"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/* && cp ./src/idx.d.ts ./lib/ts.io.d.ts",
"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",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"@babel/plugin-transform-runtime": "^7.0.0-rc.1",
"@babel/polyfill": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/runtime": "^7.0.0-rc.1",
"browserstack-runner": "^0.9.0",
"debug": "^4.0.1",
"eslint": "5.4.0",
"eslint-config-tradeshift": "6.0.1",
"http-server": "^0.11.1",
"npm-run-all": "^4.1.3",
"prettier": "1.15.0",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"semantic-release": "^15.9.9"
},
"dependencies": {
"uuid": "^3.3.2"
},
"publishConfig": {
"access": "public"
},
"version": "0.0.0-development",
"main": "lib/ts.io-cjs.js",
"module": "lib/ts.io-esm.js",
"browser": "lib/ts.io-umd.js",
"types": "lib/ts.io.d.ts",
"repository": "github:Tradeshift/io",
"author": "Daniel Spitzer <[email protected]>",
"contributors": [
"Wired Earp <[email protected]> (https://github.com/wiredearp)",
"Leo Zhang <[email protected]> (https://github.com/zdlm)",
"Daniel Spitzer <[email protected]> (https://github.com/sampi)"
],
"bugs": {
"url": "https://github.com/Tradeshift/io/issues",
"email": "[email protected]"
},
"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"
]
}