-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.33 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": "mosesjs",
"version": "0.13.1",
"description": "Mouse gesture recognition",
"main": "moses.js",
"scripts": {
"prepare": "node build/prepare.js js build/main.js && node build/prepare.js test build/main.test.js",
"make": "node node_modules/requirejs/bin/r.js -o build/build.js",
"test": "npm run prepare && mocha-phantomjs html/test/index.html",
"version": "npm run prepare && npm run make && git add --all",
"postversion": "git push && git push --tags && npm publish",
"coverage": "npm run prepare && istanbul instrument js -o js-cov && mocha-phantomjs html/test/index.html?__coverage__ spec -k node_modules/mocha-phantomjs-istanbul/index.js && istanbul report && istanbul report text-summary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ifrost/moses.git"
},
"author": "Piotr Jamroz <[email protected]> (https://about.me/piotr.jamroz)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ifrost/moses/issues"
},
"homepage": "https://github.com/ifrost/moses#readme",
"dependencies": {
"protoplast": "1.2.4",
"requirejs": "2.1.22"
},
"devDependencies": {
"almond": "0.3.1",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"mocha-phantomjs": "^4.0.2",
"mocha-phantomjs-istanbul": "0.0.2",
"phantomjs": "^2.1.7",
"sinon": "^1.17.3"
}
}