-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "bitcoin-script",
"description": "Compile Bitcoin Script to JavaScript.",
"main": "lib/index.js",
"scripts": {
"compile": "./node_modules/.bin/jison src/script.jison && mv script.js src/script.js",
"clean": "rm -rf lib",
"transpile": "./node_modules/.bin/6to5 src --out-dir lib && cp src/script.js lib/script.js",
"build": "npm run compile && npm run transpile",
"test": "jest",
"copy": "mv README.md ../ && mv npm-README.md README.md",
"uncopy": "mv README.md npm-README.md && mv ../README.md .",
"prepublish": "npm run clean && npm run build && npm run copy",
"postpublish": "npm run uncopy"
},
"jest": {
"scriptPreprocessor": "__tests__/jest.conf.js",
"testPathIgnorePatterns": [
"/node_modules/",
"./__tests__/jest.conf.js"
]
},
"dependencies": {
"big-integer": "^1.3.19",
"bigi": "^1.2.1",
"coinkey": "^0.1.0",
"ecdsa": "^0.6.0",
"js-beautify": "^1.5.4",
"ripemd160": "^0.2.0",
"secure-random": "^1.1.1",
"sha1": "^1.1.0",
"sha256": "^0.1.1"
},
"devDependencies": {
"browserify": "^6.2.0",
"6to5": "^1.15.0",
"jest-cli": "^0.1.18",
"jison": "^0.4.15",
"underscore": "^1.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/crm416/script.git"
},
"keywords": [
"bitcoin",
"javascript",
"jison",
"script"
],
"author": "crmarsh",
"homepage": "crmarsh.com/script/",
"version": "0.1.0"
}