UNPKG

2.25 kBJSONView Raw
1{
2 "name": "lodash-decorators",
3 "author": "Steven Sojka <steelsojka@gmail.com>",
4 "description": "A collection of decorators using lodash at it's core.",
5 "version": "5.0.0",
6 "engines": {
7 "node": ">=0.12.0"
8 },
9 "scripts": {
10 "clean": "npm run build:clean; npm run build:docs:clean; npm run test:clean",
11 "pretest": "npm run build:test",
12 "test": "mocha --opts mocha.opts",
13 "test:clean": "del test",
14 "posttest": "npm run test:clean",
15 "prebuild": "npm run lint && npm run build:clean",
16 "prebuild:test": "npm run test:clean",
17 "prebuild:docs": "npm run build:docs:clean",
18 "build:clean": "del '*.js' '*.js.map' '*.d.ts' applicators factory utils",
19 "build:docs:clean": "del buildDocs",
20 "build": "tsc -p tsconfig.build.json",
21 "build:test": "tsc -p tsconfig.test.json",
22 "build:docs": "tsc -p tsconfig.docs.json",
23 "predocs": "npm run build:docs",
24 "postdocs": "npm run build:docs:clean",
25 "docs": "del docs && esdoc",
26 "docs:serve": "http-server ./docs",
27 "docs:publish": "git subtree push --prefix docs origin gh-pages",
28 "readme": "doctoc ./README.md",
29 "release": "npm run build && npm run docs && npm run readme",
30 "lint": "tslint src/**",
31 "lint:fix": "tslint src/** --fix",
32 "version": "standard-version"
33 },
34 "main": "index.js",
35 "keywords": [
36 "lodash",
37 "decorators",
38 "ES7",
39 "ES2016",
40 "utility"
41 ],
42 "license": "MIT",
43 "bugs": {
44 "url": "http://github.com/steelsojka/lodash-decorators/issues"
45 },
46 "repository": {
47 "type": "git",
48 "url": "http://github.com/steelsojka/lodash-decorators"
49 },
50 "devDependencies": {
51 "@types/chai": "^3.5.1",
52 "@types/lodash": "^4.14.63",
53 "@types/mocha": "^2.2.41",
54 "@types/node": "^7.0.13",
55 "@types/sinon": "^2.1.3",
56 "chai": "~2.2.0",
57 "del-cli": "^0.2.1",
58 "doctoc": "^1.3.0",
59 "esdoc": "^0.5.2",
60 "http-server": "^0.9.0",
61 "lodash": "^4.17.4",
62 "mocha": "^3.3.0",
63 "sinon": "~1.14.1",
64 "standard-version": "^4.0.0",
65 "ts-node": "^3.0.2",
66 "tslint": "^5.1.0",
67 "tslint-language-service": "^0.9.2",
68 "typescript": "~2.3.4"
69 },
70 "peerDependencies": {
71 "lodash": "4.x"
72 },
73 "dependencies": {
74 "tslib": "^1.7.1"
75 }
76}