-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.53 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
50
51
52
53
54
55
56
57
{
"name": "proxify-class",
"version": "1.0.1",
"description": "Proxifies class methods or single function",
"main": "es6/index.js",
"scripts": {
"build": "npm run buildES6 && npm run buildES5",
"buildES6": "babel src -d es6 --ignore *.test.js",
"buildES5": "babel src -d es5 --ignore *.test.js --plugins=transform-runtime --presets=env",
"coverage": "jest --coverage",
"codacy": "npm run coverage && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage",
"lint": "eslint --fix src test",
"prepublish": "npm run build",
"start": "nodemon --exec babel-node src/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SzybkiSasza/proxify-class.git"
},
"keywords": [
"proxify",
"reflect",
"npm",
"class",
"proxy",
"apply"
],
"author": "Bartek Polanczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/SzybkiSasza/proxify-class/issues"
},
"homepage": "https://github.com/SzybkiSasza/proxify-class#readme",
"dependencies": {
"babel-runtime": "^6.23.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"codacy-coverage": "^2.0.2",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"jest": "^20.0.1",
"nodemon": "^1.11.0"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"lib"
]
}
}