-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.78 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@mediamonks/temple",
"version": "6.2.0",
"description": "This is the Display Advertising Temple, used for creating Display Advertising Units for various vendors.",
"scripts": {
"prepublishOnly": "npm-run-all -s validate build",
"validate": "npm-run-all -p lint test",
"build": "npm-run-all -s clean build:*",
"build:copy": "node copy-src-to-dist.js",
"build:npm": "node create-dist-package-json.js",
"test": "cross-env NODE_ENV=test nyc --all mocha \"./test/**/*.spec.js\"",
"test:dev": "mocha -w --watch-extensions ts,js \"./test/**/*.spec.js\"",
"clean": "npm-run-all clean:*",
"clean:test": "shx rm -rf coverage .nyc_output",
"clean:npm": "shx rm -rf lib tmp index.js",
"doc": "node_modules/.bin/esdoc",
"lint": "npm-run-all lint:*",
"lint:js": "eslint src --ext .js --cache",
"prettify": "prettier --write \"src/**/*.{js,json}\"",
"precommit": "lint-staged"
},
"lint-staged": {
"linters": {
"src/**/*.{js,json}": [
"prettier --write",
"git add"
]
}
},
"pre-push": [
"validate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mediamonks/temple.git"
},
"publishConfig": {
"access": "public"
},
"author": "Mient-jan Stelling",
"license": "MIT",
"bugs": {
"url": "https://github.com/mediamonks/temple/issues"
},
"homepage": "https://github.com/mediamonks/temple#readme",
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-stage-3": "^7.8.3",
"@babel/register": "^7.11.5",
"@types/chai": "^4.2.12",
"@types/mocha": "^2.2.44",
"@types/sinon": "^4.1.2",
"@types/sinon-chai": "^2.7.37",
"babel-eslint": "^8.0.3",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-next": "^1.4.0",
"chai": "^4.1.2",
"coveralls": "^2.11.6",
"cross-env": "^5.2.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-typescript": "^1.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^2.4.0",
"fs-extra": "^6.0.1",
"glob": "^7.1.6",
"husky": "^0.14.3",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^11.3.0",
"prettier": "^1.19.1",
"shx": "^0.2.2",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"esdoc-publish-html-plugin": "^1.1.2"
},
"peerDependencies": {
"gsap": "^3.1.0"
},
"dependencies": {}
}