-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1008 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1008 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
31
32
33
34
35
36
37
{
"name": "test-version",
"version": "1.0.3",
"description": "Test if a version matches the given versions",
"main": ".easy",
"scripts": {
"test": "cd .easy && rm -rf node_modules && ln -s ../node_modules node_modules && NODE_ENV=testing ./node_modules/.bin/mocha --require should test/"
},
"repository": {
"type": "git",
"url": "https://github.com/viRingbells/test-version"
},
"keywords": [
"version"
],
"author": "sunhaohao",
"license": "MIT",
"homepage": "https://github.com/viRingbells/test-version",
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"chalk": "^1.1.1",
"easy-babel": "^1.0.1",
"mocha": "^2.3.4",
"should": "^7.1.1"
},
"easy": {
"main": "index.js",
"scripts": {
"test": "NODE_ENV=testing ./node_modules/.bin/mocha --require should test/"
}
},
"engines": {
"node": ">=0.11.9"
}
}