-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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": "qarrr",
"version": "0.1.2",
"description": "black flags, white skulls and rattlin zones",
"main": "dist/qarrr.js",
"types": "dist/qarrr.d.ts",
"umd:main": "dist/qarrr.min.js",
"module": "dist/qarrr.es.js",
"scripts": {
"clean": "rimraf dist",
"bundle": "rollup -c",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"build": "npm run clean && npm run lint && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seveves/qarrr.git"
},
"keywords": [
"qr",
"qrcode"
],
"author": "seveves",
"license": "MIT",
"bugs": {
"url": "https://github.com/seveves/qarrr/issues"
},
"homepage": "https://github.com/seveves/qarrr#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"rimraf": "^2.6.2",
"rollup": "0.56.0",
"rollup-plugin-typescript2": "0.11.1",
"rollup-plugin-uglify": "3.0.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.5.0",
"tsutils": "^2.20.0",
"typescript": "^2.7.1"
}
}