-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.49 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "genscrape",
"version": "1.5.2",
"description": "genscrape",
"main": "src/main.js",
"scripts": {
"test": "mocha --recursive",
"test:record": "GENSCRAPE_RECORDING=record npm test",
"test:record:debug": "DEBUG=genscrape:* npm run test:record",
"test:debug": "DEBUG=genscrape:* npm test",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"build": "mkdir -p dist && npm run build:dev && npm run build:min",
"build:dev": "webpack",
"build:min": "webpack --env.production",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rootsdev/genscrape.git"
},
"keywords": [
"genealogy"
],
"author": "Justin York",
"license": "MIT",
"bugs": {
"url": "https://github.com/rootsdev/genscrape/issues"
},
"homepage": "https://github.com/rootsdev/genscrape",
"dependencies": {
"debug": "2.2.0",
"eventemitter2": "1.0.3",
"gedcomx-js": "2.7.0"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"bannerjs": "^1.0.5",
"chai": "3.5.0",
"coveralls": "2.11.9",
"istanbul": "0.4.3",
"jsdom": "9.5.0",
"mocha": "3.1.0",
"nock": "8.0.0",
"webpack": "2.3.2"
},
"files": [
"src",
"dist"
]
}