This repository was archived by the owner on Dec 15, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "blinksocks-utils",
"version": "0.0.3",
"description": "utilities for blinksocks",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "npm run lint && npm run test:coverage",
"test:coverage": "jest --coverage",
"lint": "eslint bin src",
"compile": "babel src --out-dir lib --minified --ignore spec.js,test.js",
"precommit": "npm test"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/lib/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"ip": "^1.1.5",
"urijs": "^1.18.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-babel": "^6.0.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.34.0",
"husky": "^0.13.4",
"jest": "^20.0.4"
},
"repository": {
"url": "https://github.com/blinksocks/blinksocks-utils",
"type": "git"
},
"keywords": [
"blinksocks",
"utilities",
"utils"
],
"author": "Micooz <micooz@hotmail.com>",
"license": "Apache-2.0",
"engines": {
"node": ">= 6"
}
}