-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.74 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
{
"name": "sugarcube-plugin-cid-enigio",
"version": "0.0.1",
"description": "A sugarcube plugin to timestamp and verify downloads with enigio. In the CID (Conflict incident data) environment",
"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://[email protected]:syrianarchive/sugarcube-plugin-cid-enigio.git"
},
"keywords": [
"littlefork"
],
"author": "niko <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/syrianarchive/sugarcube-plugin-cid-enigio"
},
"homepage": "https://github.com/syrianarchive/sugarcube-plugin-cid-enigio#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": "^4.9.0",
"@sugarcube/eslint-config-sugarcube": "^0.2.0",
"jsverify": "^0.8.1",
"mocha": "^3.2.0",
"sinon": "^2.1.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"fs": "0.0.1-security",
"@sugarcube/core": "^0.3.0",
"lodash": "^4.17.4",
"node-fetch": "^1.6.3"
}
}