-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
102 lines (102 loc) · 2.83 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "five-bells-condition",
"version": "5.0.1",
"description": "Implementation of crypto-conditions in JavaScript",
"main": "index.js",
"browser": "./dist/index.js",
"directories": {
"test": "test"
},
"files": [
"index.js",
"src",
"dist",
"schemas"
],
"dependencies": {
"asn1.js": "^4.9.0",
"tweetnacl": "^1.0.0"
},
"devDependencies": {
"ajv": "^5.3.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.9.0",
"babel-runtime": "^6.26.0",
"babelify": "^8.0.0",
"brfs": "^1.4.3",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"interledger-jsdoc-template": "^2.0.0",
"jsdoc": "^3.5.5",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"md-toc-filter": "^0.9.0",
"mocha": "^4.0.1",
"mustache": "^2.3.0",
"nyc": "^11.3.0",
"phantomjs-prebuilt": "^2.1.16",
"readme-to-test": "justmoon/readme-to-test#feature/st-improvements",
"sinon": "^4.1.2",
"validate-commit-msg": "^2.1.0",
"watchify": "^3.9.0",
"webpack": "^3.8.1"
},
"scripts": {
"lint": "eslint .",
"build": "npm run build:web",
"build:web": "webpack --config webpack.config.js",
"prepublish": "npm run build:web",
"test:readme": "readme-to-test",
"test:specs": "NODE_ENV=unit nyc mocha",
"test:phantom": "karma start --single-run",
"test": "npm run test:readme && npm run test:specs && npm run test:phantom",
"docs:jsdoc": "jsdoc -R README.md -c jsdoc.json src/*",
"docs:toc": "md-toc-filter docs/README.template.md > README.md",
"docs": "npm run docs:toc",
"commitmsg": "validate-commit-msg"
},
"repository": {
"type": "git",
"url": "[email protected]:interledgerjs/five-bells-condition.git"
},
"keywords": [
"cryptographic",
"condition",
"fulfillment",
"interledger",
"payment",
"assured",
"escrow"
],
"author": "Ripple <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/five-bells-condition/issues"
},
"homepage": "https://github.com/interledgerjs/five-bells-condition",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"optionalDependencies": {
"ed25519": "0.0.4"
}
}