forked from masotime/json-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.11 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
{
"name": "json-url",
"version": "3.0.0",
"description": "Compress JSON into compact base64 URI-friendly notation",
"main": "dist/node/index.js",
"browser": "dist/browser/json-url-single.js",
"scripts": {
"lint": "eslint src/*",
"compile": "rm -rf dist/; mkdir dist & wait & npm run compile:node & npm run compile:webpack & npm run compile:webpack:single",
"compile:node": "babel --plugins @babel/plugin-transform-runtime,add-module-exports -d dist/node src src/main",
"compile:webpack": "webpack",
"compile:webpack:single": "webpack --config webpack.config.single.js",
"prepublish": "npm test && npm run compile",
"test": "npm run lint && npm run test:node && npm run test:karma",
"test:node": "BABEL_ENV=test nyc mocha test/index.js --timeout 120000",
"test:karma": "karma start --single-run",
"perf": "babel-node test/perf.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"example": "open http://localhost:8000/examples/browser/test.html & static-server --port 8000"
},
"repository": {
"type": "git",
"url": "https://github.com/masotime/json-url"
},
"author": "Benjamin Goh <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/runtime-corejs2": "^7.0.0",
"bluebird": "^3.0.6",
"lz-string": "^1.4.4",
"lzma": "^2.3.2",
"msgpack5": "^4.2.1",
"node-lzw": "^0.3.1",
"urlsafe-base64": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^0",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-module-resolver": "^3.2.0",
"coveralls": "^3.0.2",
"eslint": "^6.6.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.18.2",
"karma": "^6.3.2",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^2.0.0",
"karma-webpack": "^3.0.5",
"mocha": "^8.3.2",
"nyc": "^14.1.1",
"static-server": "^2.0.5",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}