-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
77 lines (77 loc) · 2.22 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
70
71
72
73
74
75
76
77
{
"name": "lodash-decorators",
"author": "Steven Sojka <[email protected]>",
"description": "A collection of decorators using lodash at it's core.",
"version": "6.0.1",
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"clean": "npm run build:clean; npm run build:docs:clean; npm run test:clean",
"pretest": "npm run build:test",
"test": "mocha --opts mocha.opts",
"test:clean": "del test",
"posttest": "npm run test:clean",
"prebuild": "npm run lint && npm run build:clean",
"prebuild:test": "npm run test:clean",
"prebuild:docs": "npm run build:docs:clean",
"build:clean": "del '*.js' '*.js.map' '*.d.ts' applicators factory utils",
"build:docs:clean": "del buildDocs",
"build": "tsc -p tsconfig.build.json",
"build:test": "tsc -p tsconfig.test.json",
"build:docs": "tsc -p tsconfig.docs.json",
"predocs": "npm run build:docs",
"postdocs": "npm run build:docs:clean",
"docs": "del docs && esdoc",
"docs:serve": "http-server ./docs",
"docs:publish": "git subtree push --prefix docs origin gh-pages",
"readme": "doctoc ./README.md",
"release": "npm run build && npm run docs && npm run readme",
"lint": "tslint src/**",
"lint:fix": "tslint src/** --fix",
"version": "standard-version"
},
"main": "index.js",
"typings": "index.d.ts",
"keywords": [
"lodash",
"decorators",
"ES7",
"ES2016",
"utility"
],
"license": "MIT",
"bugs": {
"url": "http://github.com/steelsojka/lodash-decorators/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/steelsojka/lodash-decorators"
},
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/lodash": "^4.14.109",
"@types/mocha": "^2.2.48",
"@types/node": "^7.0.65",
"@types/sinon": "^2.3.7",
"chai": "~2.2.0",
"del-cli": "^0.2.1",
"doctoc": "^1.3.1",
"esdoc": "^1.1.0",
"http-server": "^0.11.1",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"sinon": "~1.14.1",
"standard-version": "^8.0.1",
"ts-node": "^3.0.2",
"tslint": "^5.10.0",
"tslint-language-service": "^0.9.9",
"typescript": "~2.3.4"
},
"peerDependencies": {
"lodash": "4.x"
},
"dependencies": {
"tslib": "^1.9.2"
}
}