-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "base64object",
"version": "1.0.3",
"main": "build/index.js",
"description": "Encode and decode a object without stringify / parsing the data",
"repository": "[email protected]:entwicklerstube/base64object.git",
"author": "michaelzoidl <[email protected]>",
"keywords": ["base64", "object", "base64 object", "browser", "node"],
"license": "MIT",
"scripts": {
"build": "rimraf build && mkdir build && babel index.js --out-dir build",
"prepublish": "yarn run standard && yarn run test && yarn run build",
"test": "mocha test.js --require mocha --compilers js:babel-core/register",
"standard": "standard --env mocha",
"prepublish": "yarn run test && yarn run build"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"mocha": "^3.4.1",
"rimraf": "^2.6.1",
"standard": "^10.0.2"
},
"files": [
"build"
],
"babel": {
"presets": [
"es2015"
]
},
"standard": {
"ignore": [
"build"
],
"globals": [
"expect"
]
}
}