-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.78 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": "consent-string",
"version": "1.5.2",
"description": "Encode and decode web-safe base64 consent information with the IAB EU's GDPR Transparency and Consent Framework",
"homepage": "https://github.com/InteractiveAdvertisingBureau/Consent-String-SDK-JS",
"repository": "https://github.com/InteractiveAdvertisingBureau/Consent-String-SDK-JS",
"keywords": [
"consent",
"gdpr",
"iab"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "mocha test/ --recursive",
"debug": "ndb npm test",
"coverage": "nyc --reporter=html --reporter=text-summary --reporter=lcov --check-coverage --lines 60 --functions 60 --branches 60 mocha test/ --recursive",
"lint": "eslint src/. test/.",
"docs": "jsdoc -c .jsdoc.js -r",
"build": "babel src --out-dir dist && cp src/index.d.ts dist/",
"prepublishOnly":"npm run build"
},
"dependencies": {
"base-64": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-object-super": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.0.2",
"coveralls": "^3.0.0",
"eslint": "^4.0.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-mocha": "^4.11.0",
"jsdoc": "^3.5.5",
"mocha": "^3.4.2",
"ndb": "^1.1.4",
"nyc": "^11.0.2",
"sinon": "^4.5.0"
}
}