This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "@vivaxy/impression",
"version": "2.1.1",
"description": "impression",
"main": "./dist/index.js",
"scripts": {
"build": "npm run test && npm run build:dist && npm run build:bundle",
"build:dist": "babel ./source --out-dir ./dist",
"build:bundle": "rm -rf bundle && mkdir bundle && npm run build:bundle:webpack && npm run build:bundle:rollup",
"build:bundle:webpack": "webpack",
"build:bundle:rollup": "rollup -c --environment production",
"test": "NODE_ENV=test karma start",
"release": "npm run build && standard-version && git push --follow-tags && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivaxy/impression.git"
},
"keywords": [
"impression",
"viewable",
"on-screen",
"advertisement",
"in-view",
"onScreen",
"in-view.js",
"on screen",
"in view",
"dom change",
"mutation",
"dom mutation"
],
"author": "vivaxy",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivaxy/impression/issues"
},
"homepage": "https://github.com/vivaxy/impression#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.23.1",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.1.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"standard-version": "^4.0.0",
"webpack": "^2.4.1"
},
"dependencies": {
"eventemitter3": "^2.0.3"
}
}