-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.84 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "littlefork-plugin-check",
"version": "0.0.1",
"description": "A scaffolding repository to quick start a new littlefork plugin.",
"main": "_dist/index.js",
"config": {
"srcDir": "lib",
"testDir": "test",
"distDir": "_dist",
"reporter": "spec"
},
"scripts": {
"test": "mocha -c --reporter $npm_package_config_reporter --require test/helpers.js --compilers js:babel-register $npm_package_config_testDir/**/*.spec.js",
"lint:src": "eslint --cache $npm_package_config_testDir $npm_package_config_srcDir",
"lint:docs": "documentation lint $npm_package_config_srcDir/**/*.js",
"lint": "npm run lint:src && npm run lint:docs",
"compile": "babel -d $npm_package_config_distDir $npm_package_config_srcDir",
"watch:test": "chokidar \"$npm_package_config_testDir/**/*.js\" \"$npm_package_config_srcDir/**/*.js\" -c \"npm run test -s\"",
"watch:lint": "chokidar \"$npm_package_config_testDir/**/*.js\" \"$npm_package_config_srcDir/**/*.js\" -c \"npm run lint -s\"",
"watch:docs": "chokidar \"$npm_package_config_srcDir/**/*.js\" -s \"npm run docs\"",
"watch:build": "chokidar \"$npm_package_config_srcDir/**/*.js\" -c \"npm run compile -s\"",
"watch": "concurrently -p \"[{name}]\" -n \"LINT,BUILD,TEST,DOCS\" \"npm run watch:lint\" \"npm run watch:build\" \"npm run watch:test\" \"npm run watch:docs\"",
"docs:plugin": "documentation readme --shallow --readme-file Readme.md -s \"Plugins\" $npm_package_config_srcDir/index.js",
"docs": "for i in plugin; do npm run docs:$i -s; done",
"prebuild": "npm run clean && npm run lint && npm run test",
"build": "npm run compile",
"clean": "rm -rf $npm_package_config_distDir",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syrianarchive/littlefork-plugin-check.git"
},
"keywords": [
"littlefork"
],
"author": "crito <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/syrianarchive/littlefork-plugin-check/issues"
},
"homepage": "https://github.com/syrianarchive/littlefork-plugin-check#README",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chokidar-cli": "^1.2.0",
"concurrently": "^3.4.0",
"documentation": "^4.0.0-beta.18",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-compat": "^1.0.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-promise": "^3.5.0",
"jsverify": "^0.8.1",
"mocha": "^3.2.0",
"sinon": "^2.1.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"graphql-client": "^1.1.0",
"littlefork-core": "^0.9.7",
"littlefork-plugin-dem": "^0.0.0",
"lodash": "^4.17.4"
}
}