-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 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
{
"name": "measurement-framework",
"version": "0.2.1",
"description": "Collection of Javascript code to implement a browser based measurement system for websites. It uses a cookie to store a users action on a webpage and let you map thoose actions to a particular state in the user journey.",
"main": "index.js",
"module": "index.js",
"dependencies": {
"alphanumeric": "latest",
"is-json": "latest",
"js-cookie": "latest",
"jsonp-es6": "latest",
"lodash-es": "^4.17.11"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"jasmine": "^3.4.0",
"jasmine-core": "^3.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "latest",
"karma-jasmine": "^2.0.1",
"karma-jquery": "latest",
"karma-rollup-preprocessor": "^7.0.0",
"rollup": "^1.10.1",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sizes": "^0.5.1",
"rollup-plugin-uglify": "^6.0.2",
"rollup-watch": "latest",
"uglify-es": "latest"
},
"scripts": {
"dev": "./node_modules/.bin/rollup -c -w",
"build": "./node_modules/.bin/rollup -c; node ./bin/post-build.js",
"test": "./node_modules/.bin/karma start --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mijohansen/measurement-framework.git"
},
"author": "Michael Johansen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mijohansen/measurement-framework/issues"
},
"homepage": "https://github.com/mijohansen/measurement-framework#readme",
"bin": {
"mfreg": "bin/register.js"
}
}