-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 713 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 713 Bytes
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
{
"name": "alicates",
"description": "Functional library with ES6",
"version": "0.1.0",
"author": "Gonzalo Ruiz de Villa",
"repository" : {
"type": "git",
"url": "https://github.com/gonzaloruizdevilla/alicates.git"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"compile": "babel -e -d lib/ src/",
"prepublish": "npm run compile",
"test": "npm run compile && istanbul cover _mocha",
"lint": "find . -name '*.es6' | xargs eslint",
"jscs": "jscs test/ --config=./test/.jscsrc && jscs src/ ",
"all": "npm run lint && npm test"
},
"devDependencies": {
"babel": "*",
"chai": "*",
"eslint": "^1.2.0",
"istanbul": "*",
"mocha": "*"
}
}