forked from singingwolfboy/canonicaljson-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.64 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
{
"name": "@stratumn/canonicaljson",
"version": "1.0.2",
"description": "JS library for producing JSON in canonical format",
"main": "lib/canonicaljson.js",
"module": "lib/canonicaljson.mjs",
"files": ["cli/", "lib/", "src/", "LICENSE"],
"scripts": {
"build": "rollup -c rollup.config.js",
"pretest:integration": "npm run build",
"test:unit": "jest --coverage",
"test:integration": "canonicaljson-spec/test.sh cli/canonicaljson.js",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"lint": "eslint src test",
"prepublishOnly": "yarn && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stratumn/canonicaljson-js.git"
},
"keywords": ["stratumn", "canonical", "json", "js"],
"author": "Stratumn team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stratumn/canonicaljson-js/issues"
},
"homepage": "https://github.com/stratumn/canonicaljson-js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babelrc-rollup": "^3.0.0",
"big.js": "^5.0.3",
"bigdecimal": "^0.6.1",
"decimal.js": "^7.3.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^21.2.1",
"prettier": "^1.7.4",
"regenerator-runtime": "^0.11.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2"
},
"dependencies": {
"bignumber.js": "^4.1.0"
}
}