forked from yunyu/parse-prometheus-text-format
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 955 Bytes
/
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
{
"name": "parse-prometheus-text-format",
"version": "1.1.0",
"description": "Parses Prometheus text format into JavaScript objects",
"main": "dist/parse-prometheus-text-format.cjs.js",
"module": "dist/parse-prometheus-text-format.esm.js",
"browser": "dist/parse-prometheus-text-format.umd.js",
"scripts": {
"test": "node -r esm test/run-test.js",
"bench": "node -r esm test/run-test.js bench",
"build": "rollup -c"
},
"author": "Yunyu Lin",
"license": "Apache-2.0",
"dependencies": {
"shallow-equal": "^1.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/yunyu/parse-prometheus-text-format.git"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"esm": "^3.2.25",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0"
},
"files": [
"dist"
]
}