-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
57 lines (57 loc) · 2.56 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
{
"name": "kayn",
"version": "0.10.2",
"main": "index.js",
"scripts": {
"example": "yarn lint-example; yarn build && babel ./example.js -o ./example.babel.js && node example.babel.js",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"lint-src": "prettier --config=prettier.json --write \"./lib/**/*.js\"",
"lint-example": "prettier --config=prettier.json --write example.js",
"lint-test": "prettier --config=prettier.json --write \"./test/**/*.js\"",
"lint-examples": "prettier --config=prettier.json --write \"./examples/**/*.js\"",
"lint-scripts": "prettier --config=prettier.json --write \"./_scripts/**/*.js\"",
"lint-typings": "prettier --config=prettier-typescript.json --write \"./typings/{,!(node_modules)/**/}*.ts\"",
"lint": "yarn lint-src; yarn lint-example; yarn lint-test; yarn lint-examples; yarn lint-scripts; yarn lint-typings;",
"docs": "./node_modules/.bin/esdoc ./lib/**/*.js",
"test": "yarn build && yarn lint; yarn lint-test; yarn test-only",
"test-only": "node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/mocha/bin/_mocha -- --require babel-register \"test/unit/**/*.spec.js\"",
"test-integration": "yarn build && yarn lint; yarn lint-test; ./node_modules/.bin/babel-istanbul cover ./node_modules/mocha/bin/_mocha -- --require babel-register \"test/integration/**/*.spec.js\"",
"swagger": "babel-node ./_scripts/generate_ts_from_swagger && yarn lint",
"generate-api-cov": "babel-node ./_scripts/generate_api_cov_button"
},
"types": "./typings/index.d.ts",
"repository": "https://github.com/cnguy/kayn.git",
"author": "Chau Nguyen <chautnguyen96@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-istanbul": "^0.12.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"esdoc": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"find-in-files": "^0.4.0",
"istanbul": "^0.4.5",
"lint": "^0.7.0",
"mocha": "^4.0.1",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"svg-to-png": "^4.0.0",
"sw2dts": "^2.5.0",
"yarn": "^1.17.3"
},
"dependencies": {
"debug": "^4.1.0",
"dotenv": "^8.0.0",
"lodash.assign": "^4.2.0",
"lodash.merge": "^4.6.0",
"lru-cache": "^5.1.1",
"redis": "^2.8.0",
"request": "^2.83.0",
"riot-ratelimiter-temp": "0.0.5",
"superstruct": "^0.6.0",
"supports-color": "^6.1.0"
}
}