-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
61
62
{
"name": "electrode-cookies",
"version": "1.0.5",
"description": "Electrode ISO cookies lib",
"main": "lib/index.js",
"browser": "lib/csindex.js",
"scripts": {
"build": "echo \"Nothing to build. Just a placeholder\"",
"test": "clap test-only",
"coverage": "clap test-cov",
"check": "clap check",
"format": "prettier --write --print-width 100 *.js `find . -type d -d 1 -exec echo '{}/**/*.js' \\; | egrep -v '(/node_modules/|/dist/|/coverage/)'`"
},
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/electrode.git"
},
"keywords": [],
"license": "Apache-2.0",
"files": [
"cookies-js",
"lib",
"hapi-plugin.js"
],
"author": "Electrode (http://www.electrode.io/)",
"contributors": [
"Joel Chen <[email protected]>"
],
"dependencies": {
"electrode-hapi-compat": "^1.0.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"bluebird": "^2.10.2",
"electrode-archetype-njs-module-dev": "^2.3.2",
"electrode-server": "^2.0.0",
"eslint-config-prettier": "^2.3.0",
"jsdom": "^9.4.2",
"jsdom-global": "^2.0.0",
"mock-require": "^1.3.0",
"prettier": "^1.5.3",
"set-cookie-parser": "^1.0.1",
"superagent": "^1.7.2",
"xclap": "^0.2.0"
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage",
"*clap.js",
"gulpfile.js",
"dist",
"test",
"cookies-js"
]
}
}