-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 KB
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
{
"name": "encode-object",
"description": "Encode/decode JS objects - useful for maintaining state in a URL hash",
"version": "0.2.2",
"main": "lib/encode-object.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rolyatmax/encode-object.git"
},
"scripts": {
"clean": "rimraf lib",
"check:src": "npm run lint && npm run test",
"build": "babel src -d lib",
"watch": "npm run build -- -w",
"test": "babel test.js | node | faucet",
"lint": "standard",
"postinstall": "cp node_modules/standard/eslintrc.json .eslintrc || true",
"prepublish": "npm run clean && npm run build && npm run check:src"
},
"files": [
"lib",
"src"
],
"bugs": {
"url": "https://github.com/rolyatmax/encode-object/issues"
},
"homepage": "https://github.com/rolyatmax/encode-object",
"author": "Taylor Baldwin <taylorbaldwin@gmail.com> (https://tbaldw.in)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"faucet": "0.0.1",
"rimraf": "^2.5.4",
"standard": "^7.1.2",
"tape": "^4.6.0"
},
"dependencies": {
"bases": "^0.2.1",
"left-pad": "^1.1.1",
"object-hash": "^1.1.2"
}
}