-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 762 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 762 Bytes
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
{
"name": "CryptoProAPI",
"version": "0.0.1",
"description": "Простое API для работы с КриптоПро ЭЦП Browser plug-in",
"repository": {
"type": "git",
"url": "https://github.com/shanhaichik/CryptoProAPI.git"
},
"author": {
"name": "Alexander Dukhovnyak",
"email": "shanhaichik@gmail.com"
},
"license": "MIT",
"main": "src/cryptoAPI.js",
"scripts": {
"watch": "watchify ./dev/CryptoPro.js -o dev/bundle.js -v -d",
"browserify": "browserify ./dev/CryptoPro.js | uglifyjs -m > src/cryptoAPI.js",
"build": "npm run browserify ",
"start": "npm run watch"
},
"devDependencies": {
"browserify": "~6.0.3",
"uglify-js": "~2.4.15",
"watchify": "~2.0.0"
}
}