-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "@razorpay/lytics",
"version": "1.0.1",
"description": "Simpler analytics using HTML attributes.",
"main": "dist/lytics",
"scripts": {
"build": "npm run build-with-map -- --experimental-scope-hoisting",
"build-with-map": "npm run clean && parcel build lytics.js --global lytics",
"clean": "rm -rf dist/",
"lint": "eslint *.js utils/**/*.js",
"test": "cp test.html dist/test.html && mocha test.js --exit",
"start": "parcel index.html -p 3000 --open --global lytics"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razorpay/lytics.js.git"
},
"keywords": [
"lytics",
"analytics",
"razorpay",
"html"
],
"author": "Umang Galaiya <umang.galaiya@razorpay.com> (https://umanggalaiya.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/razorpay/lytics.js/issues"
},
"homepage": "https://github.com/razorpay/lytics.js#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.1",
"fastify": "^2.1.0",
"husky": "^1.3.1",
"mocha": "^6.0.2",
"parcel-bundler": "^1.11.0",
"puppeteer": "^1.13.0",
"serve-static": "^1.13.2"
},
"husky": {
"hooks": {
"pre-push": "npm run test"
}
}
}