-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "mapper.js",
"description": "Transform object from one structure to another by using schema. It's useful in API when you want to modify data before sending it to clients",
"version": "0.4.1",
"author": {
"name": "Dmitry Kirilyuk",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Jokero/mapper.js.git"
},
"license": "MIT",
"keywords": [
"mapper",
"map",
"mapping",
"schema",
"object",
"api"
],
"engines": {
"node": ">=6.0.0"
},
"main": "./lib/mapper.js",
"files": [
"dist/",
"lib/",
"examples/",
"LICENSE",
"README.md"
],
"devDependencies": {
"babel-cli": "6.9.0",
"babel-preset-es2015": "6.9.0",
"browserify": "13.0.1",
"uglify-js": "2.6.2",
"chai": "3.5.0",
"mocha": "2.4.5"
},
"scripts": {
"test": "mocha 'tests/**/*.js' --timeout 5000",
"babelify": "babel src --presets es2015 --out-dir lib",
"browserify": "browserify ./lib/mapper.js --standalone mapper --outfile dist/mapper.js",
"minify": "uglifyjs dist/mapper.js --output dist/mapper.min.js",
"build": "npm run babelify && npm run browserify && npm run minify"
},
"runkitExampleFilename": "examples/index.js"
}