-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.81 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": "perfected-prototypes",
"version": "2.1.1",
"description": "An easy way to extend the built in Javascript prototype chains and make JS fun again",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --require babel-register",
"build": "rm -rf ./lib && ./node_modules/.bin/babel src -d lib && cp package.json ./lib && cp README.md ./lib",
"precommit": "npm run prettier",
"prepush": "npm run prettier && npm run linter",
"prettier": "node ./node_modules/.bin/prettier --config .prettierrc.json './src/**/*.js' --write",
"linter": "./node_modules/.bin/eslint ./src/**/ --ext .js, --ignore-pattern 'node_modules/' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/El-Dringo-Brannde/Perfected-Prototypes.git"
},
"keywords": [
"prototypes",
"prototype",
"OOP",
"Object Orientated Programming",
"Functional",
"Functional Programming",
"Objects",
"Arrays",
"Strings",
"Numbers",
"Utility",
"Utilities",
"Lodash",
"Prototype-chain"
],
"author": "Brandon Dring",
"license": "MIT",
"bugs": {
"url": "https://github.com/El-Dringo-Brannde/Perfected-Prototypes/issues"
},
"homepage": "https://github.com/El-Dringo-Brannde/Perfected-Prototypes#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"prettier": "^1.14.0"
},
"dependencies": {
"lodash": "^4.17.10"
}
}