-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
35 lines (35 loc) · 986 Bytes
/
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
{
"name": "u-node",
"version": "0.0.2",
"description": "A library to compactly encode data which can be used in URL.",
"main": "lib/u.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register",
"build": "babel src -d lib",
"dist": "webpack lib/u.js dist/u.js --output-library u --output-library-target umd",
"dist-min": "webpack lib/u.js dist/u.min.js -p --output-library u --output-library-target umd"
},
"keywords": [
"url",
"encode",
"compression"
],
"repository": {
"type": "git",
"url": "git://github.com/ananthakumaran/u.git"
},
"author": "ananthakumaran <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-plugin-lodash": "^2.0.1",
"babel-preset-es2015": "^6.3.13",
"jsverify": "^0.7.1",
"mocha": "^2.4.5",
"webpack": "^1.12.11"
},
"dependencies": {
"lodash": "4.2.1"
}
}