-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "anonymous-id",
"version": "0.1.14",
"description": "get and set anonymous identifiers",
"main": "lib/index.js",
"module": "lib/index.es.js",
"files": [
"dist/",
"lib/"
],
"scripts": {
"clean": "rm -rf lib dist",
"build": "rollup --config rollup.config.js",
"build:production": "NODE_ENV=production rollup --config rollup.config.js",
"watch": "rollup --config rollup.config.js --watch",
"test": "ava",
"patch": "npm run pt && npm version patch && npm run p",
"minor": "npm run pt && npm version minor && npm run p",
"major": "npm run pt && npm version major && npm run p",
"pt": "npm run build:production && npm test",
"t": "npm run build && npm test",
"p": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usermirror/anonymous-id.git"
},
"keywords": [
"anonymous",
"id",
"analytics"
],
"author": "UserMirror, Inc. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/usermirror/anonymous-id/issues"
},
"homepage": "https://github.com/usermirror/anonymous-id#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.52",
"@babel/core": "^7.0.0-beta.52",
"ava": "^0.25.0",
"babel-preset-env": "^1.7.0",
"lodash": "^4.17.10",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0"
},
"dependencies": {}
}