-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "amaretti",
"description": "Wrapper of mutiple encryption library to encrypt/decrypt messages with a passphrase, everywhere",
"version": "0.2.1",
"author": {
"name": "Vincent Cassé",
"url": "https://beveloper.fr"
},
"scripts": {
"start": "npm install && bower install && rm -rf public/*; brunch watch --server",
"test": "npm install && bower install && node_modules/.bin/karma start",
"clean": "rm -rf node_modules/; rm -rf bower_components/; rm -rf public/"
},
"main": "public/amaretti.js",
"licenses": [
{
"type": "MIT License",
"url": "http://opensource.org/licenses/mit-license.html"
}
],
"repository": {
"type": "git",
"url": "[email protected]:VincentCasse/amaretti.js.git"
},
"readme": "README.md",
"devDependencies": {
"brunch": "^1.8.2",
"coffee-script": "^1.9.2",
"coveralls": "^2.11.2",
"del": "^1.1.1",
"fb-flo-brunch": "^1.7.22",
"javascript-brunch": "1.7.1",
"jshint-brunch": "^1.8.0",
"karma": "~0.12.0",
"karma-chrome-launcher": "~0.1.0",
"karma-cli": "0.0.4",
"karma-coverage": "^0.4.2",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "~0.2.0",
"karma-junit-reporter": "~0.2.0",
"karma-phantomjs-launcher": "^0.1.4",
"mock-promises": "^0.3.0"
}
}