forked from zurb/tribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "tributejs",
"version": "5.1.3",
"description": "Native ES6 @mentions",
"main": "dist/tribute.js",
"module": "dist/tribute.esm.js",
"browser": "dist/tribute.min.js",
"types": "tributejs.d.ts",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-spec-reporter": "0.0.32",
"puppeteer": "^2.1.1",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.2.0",
"watchify": "^3.11.1"
},
"repository": {
"type": "git",
"url": "git://github.com/zurb/tribute.git"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "karma start test/karma.conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run --browsers ChromeHeadless"
},
"author": "Jordan Humphreys <[email protected]>",
"license": "MIT",
"dependencies": {}
}