-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.91 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
54
55
56
57
58
59
60
{
"name": "serializr-fp",
"version": "0.2.0",
"description": "(De)serialize complex object graphs to/from JSON",
"main": "index.js",
"files": [
"core",
"schemas"
],
"scripts": {
"prebuild": "rimraf core && rimraf schemas && rimraf index.js",
"build": "cross-env NODE_ENV=production npm run build:src",
"build:src": "babel src --out-dir . --ignore *.test.js",
"test": "cross-env NODE_ENV=test npm run test:unit && npm run test:lint",
"test:unit": "nyc --check-coverage mocha src/**/*.test.js",
"test:lint": "eslint --ignore-path .gitignore **/*.js",
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"docs:contributers": "githubcontrib --owner dietergeerts --repo serializr-fp --showlogin true --imagesize 100 --format md | node-injectmd -t contributers -i README.md",
"docs:api": "jsdoc2md src/**/*.js --template API.hbs > API.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dietergeerts/serializr-fp.git"
},
"keywords": [
"serialize",
"deserialize",
"json",
"fp"
],
"author": "Dieter Geerts <[email protected]> (https://dietergeerts.github.io/)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dietergeerts/serializr-fp/issues"
},
"homepage": "https://github.com/dietergeerts/serializr-fp#readme",
"dependencies": {
"lodash": "^4"
},
"devDependencies": {
"@istanbuljs/nyc-config-babel": "^1.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"codecov": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.18.0",
"github-contributors-list": "^1.2.3",
"injectmd": "^1.0.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.0.0",
"must": "^0.13.4",
"must-sinon": "0.0.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"sinon": "^4.4.1"
}
}