-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "adjs",
"version": "2.0.0-beta.33",
"description": "Ad Library to simplify and optimize integration with ad networks such as DFP",
"main": "./core.js",
"types": "./types.d.ts",
"scripts": {
"build": "npm run clean && node ./rollup.build.js",
"clean": "rm -rf ./build && rm -f docs/error.md",
"docs": "docsify serve docs",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -c tslint.json --fix 'src/**/*.ts'",
"release": "npm run build; cd build; npm config set '//registry.npmjs.org/:_authToken' $NPM_TOKEN; npm publish",
"server": "echo \"Demo is available http://localhost:8080/demo\" && http-server -p 8080",
"start": "nodemon --exec \"npm run build && npm run server\" --kill-all --watch ./src -e ts",
"test": "NODE_PATH=./src jest --coverage ./tests --no-cache",
"ts": "tsc --pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/econify/ad.js.git"
},
"author": "Stephen Baldwin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/econify/ad.js/issues"
},
"homepage": "https://github.com/econify/ad.js#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^23.3.0",
"concurrently": "^3.6.0",
"docsify": "^4.10.2",
"docsify-cli": "^4.4.0",
"estree-walker": "^0.6.1",
"fs-extra": "^8.0.1",
"http-server": "^0.12.3",
"husky": "^1.0.0-rc.13",
"jest": "^25.1.0",
"lodash.orderby": "^4.6.0",
"magic-string": "^0.25.2",
"nodemon": "^1.19.1",
"rollup": "^1.11.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-filesize": "^6.1.1",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"source-map-loader": "^0.2.3",
"ts-jest": "^25.2.1",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"typescript": "^3.5.1"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run ts && npm run lint && npm test"
}
}
}