-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "@js-data/repo-tools",
"description": "Common utility scripts used by js-data repositories.",
"version": "1.0.1",
"homepage": "https://github.com/js-data/js-data-repo-tools",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-repo-tools.git"
},
"author": "js-data-repo-tools project authors",
"license": "MIT",
"main": "./src/api/index.js",
"files": [
"bin/",
"src/",
"templates/",
"AUTHORS",
"CONTRIBUTORS",
"yarn.lock"
],
"bin": {
"repo-tools": "./bin/repo-tools"
},
"keywords": [
"js-data",
"jsdata",
"repo",
"tools"
],
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"lint": "standard 'src/**/*.js' 'examples/**/*.js' 'bin/**/*.js'",
"rollup": "rollup examples/rollup/index.js -c examples/rollup/rollup.config.js -o examples/rollup/build/rollup-example.js -m examples/rollup/build/rollup-example.js.map -f umd",
"test": "npm run lint && node . changelog && node . updates && node . authors",
"release": "npm test"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"lodash": "^4.17.15",
"npm-check-updates": "^4.0.1",
"standard": "^8.6.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"commander": "^4.1.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1"
}
}