-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "abp-filter-parser",
"version": "0.2.0",
"main": "dist/src/abp-filter-parser.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"lint": "eslint src/abp-filter-parser.js src/extractInfo.js test/*.js",
"build": "babel --modules umd src/*.js --out-dir dist --source-maps",
"build-jsm": "babel --modules ignore --plugins babel-jsm-plugin src --out-dir dist --source-maps",
"build-common": "babel --modules common src/abp-filter-parser.js --out-file dist/abp-filter-parser-commonjs.js --source-maps",
"extract": "babel-node src/extractInfo.js",
"prepublish": "npm run build"
},
"author": "Brian R. Bondy <netzen@gmail.com> (http://www.brianbondy.com)",
"license": "MPL-2.0",
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-core": "^6.1.2",
"babel-eslint": "^4.1.3",
"babel-jsm-plugin": "^1.0.2",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.1.2",
"babel-preset-stage-2": "^6.1.2",
"eslint": "^2.1.0",
"mocha": "^2.3.3",
"pre-commit": "^1.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbondy/abp-filter-parser.git"
},
"bugs": {
"url": "https://github.com/bbondy/abp-filter-parser/issues"
},
"homepage": "https://github.com/bbondy/abp-filter-parser#readme",
"description": "",
"dependencies": {
"bloom-filter-js": "0.0.12"
},
"engines": {
"node": "~5.0"
},
"pre-commit": [
"lint"
]
}