-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 791 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 791 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
27
28
{
"name": "expression-parser",
"repository": "git@github.com:uniphil/expression-parser.git",
"version": "1.0.0",
"description": "",
"main": "func.js",
"scripts": {
"test": "gulp test && npm run coverage",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly; cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": "uniphil",
"license": "BSD",
"devDependencies": {
"chai": "^1.9.2",
"coveralls": "^2.11.2",
"gulp": "^3.8.8",
"gulp-jscs": "^1.2.0",
"gulp-jshint": "^1.8.5",
"gulp-load-plugins": "^0.7.0",
"gulp-mocha": "^1.1.1",
"istanbul": "^0.3.4",
"jshint-stylish": "^1.0.0",
"mocha": "^1.21.4"
},
"dependencies": {
"ramda": "^0.8.0"
}
}