-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "should-code-eql",
"version": "1.0.1",
"description": "javasript code equality assertions",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/_mocha --require should --reporter spec",
"test-cov": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should",
"test-travis": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should"
},
"keywords": [
"should",
"code",
"equality"
],
"author": "skyinlayer",
"license": "MIT",
"dependencies": {
"escodegen": "^1.7.0",
"esprima": "^2.7.0",
"should": "^8.2.2",
"should-equal": "~0.5.0",
"should-format": "~0.3.1",
"should-type": "~0.2.0"
},
"devDependencies": {
"istanbul": "~0.4.0",
"mocha": "~2.3.3"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
}
}