-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "qkCryptoJS",
"version": "1.0.0",
"description": "A Quantum Key Distribution system, based on BB84, using emulated photons.",
"author": "Jake Prather <[email protected]>",
"main": "src/app.js",
"repository": {
"type": "git",
"url": "https://github.com/jakehp/qkCryptoJS"
},
"dependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.7",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"watchify": "^3.7.0"
},
"scripts": {
"start": "watchify sample.js -o sample.compiled.js -t [ babelify --presets [ es2015 ] ]",
"test": ".\\node_modules\\.bin\\mocha test/**/*.js --compilers js:babel-core/register && gulp coveralls"
},
"private": true,
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^0.10.4",
"gulp-jscs": "^3.0.2",
"gulp-mocha": "^2.2.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5"
}
}