-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 790 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 790 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
29
30
{
"name": "continue-assign-parser",
"version": "1.0.0",
"description": "a parser which can parse assign a value to some variables",
"main": "index.js",
"scripts": {
"test": "mocha -u bdd ./test/*.js",
"cov":"istanbul cover ./node_modules/mocha/bin/_mocha test/*.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"bin": {
"aparse": "bin/start"
},
"keywords": [
"parser",
"js",
"assign"
],
"repository": {
"type": "git",
"url": "https://github.com/lucefer/continue-assign-parser.git"
},
"author": "lucefer",
"license": "MIT",
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2"
}
}