-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.73 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
{
"name": "fs-js-lite",
"version": "2.6.6",
"description": "Lite JS SDK for the FamilySearch API",
"main": "src/FamilySearch.js",
"browser": {
"./src/nodeHandler.js": "./src/xhrHandler.js"
},
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha test/node.js",
"test:browser": "npm run build:min && mocha test/browser.js",
"test:record": "NOCK_BACK_MODE=record npm test",
"test:record:browser": "NOCK_BACK_MODE=record npm run test:browser",
"test:record:node": "NOCK_BACK_MODE=record npm run test:node",
"prepublish": "npm test && npm run build",
"build": "mkdir -p dist && npm run build:full && npm run build:min",
"build:full": "webpack --output-library FamilySearch src/FamilySearch.js dist/FamilySearch.js",
"build:min": "webpack --output-library FamilySearch --optimize-minimize src/FamilySearch.js dist/FamilySearch.min.js",
"coverage": "istanbul cover _mocha",
"coveralls": "istanbul cover --report lcovonly _mocha && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FamilySearch/fs-js-lite.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FamilySearch/fs-js-lite/issues"
},
"homepage": "https://github.com/FamilySearch/fs-js-lite#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"gedcomx-fs-js": "^1.3.0",
"gedcomx-js": "^2.6.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^16.5.0",
"mocha": "^8.1.1",
"nock": "8.0.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"js-cookie": "^2.2.0",
"request": "^2.78.0"
},
"files": [
"dist",
"src"
]
}