-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
{
"name": "doremi",
"version": "0.1.1",
"description": "utility library",
"main": "index.js",
"scripts": {
"lint": "eslint src tests --config .eslintrc",
"test": "mocha src --recursive --compilers js:babel-core/register",
"build": "babel src --out-dir .",
"clean": "rimraf array common date func internal logic number object random string index.js test.js",
"prepublish": "npm run build",
"postpublish": "npm run clean && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/sadcitizen/doremi.git"
},
"keywords": [
"utilities"
],
"author": "Eugene Abrosimov <sadcitizen@yandex.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sadcitizen/doremi/issues"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^1.10.0",
"eslint": "^2.12.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.4",
"sinon": "^1.17.4",
"webpack": "^1.13.1"
}
}