-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "emailjs-base64",
"version": "1.1.4",
"homepage": "https://github.com/emailjs/emailjs-base64",
"description": "Safe Base64 de/encoding to and from strings and typed arrays",
"author": "Felix Hammerl <[email protected]>",
"keywords": [
"base64"
],
"license": "MIT",
"scripts": {
"build": "./scripts/build.sh",
"lint": "$(npm bin)/standard",
"preversion": "npm run build",
"test": "npm run lint && npm run unit",
"unit": "$(npm bin)/mocha './src/*-unit.js' --reporter spec --require babel-register testutils.js",
"test-watch": "$(npm bin)/mocha './src/*-unit.js' --reporter spec --require babel-register testutils.js --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/emailjs/emailjs-base64.git"
},
"main": "./dist/base64",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2",
"standard": "^12.0.1"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeAll",
"afterAll",
"after",
"expect"
],
"ignore": [
"dist"
]
}
}