-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
112 lines (112 loc) · 3.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "microfeedback-button",
"version": "1.1.0",
"description": "A simple feedback button/widget. Use together with a microfeedback backend.",
"browser": "dist/microfeedback-button.js",
"main": "lib/microfeedback-button.js",
"module": "es/microfeedback-button.js",
"scripts": {
"dev": "NODE_ENV=development SERVE=true rollup -c --watch -o dist/microfeedback-button.js",
"build:commonjs": "NODE_ENV=cjs rollup -c -o lib/microfeedback-button.js",
"build:es": "NODE_ENV=es rollup -c -o es/microfeedback-button.js",
"build:umd": "NODE_ENV=development rollup -c -o dist/microfeedback-button.js",
"build:umd:min": "NODE_ENV=production rollup -c -o dist/microfeedback-button.min.js",
"build": "npm-run-all --parallel build:commonjs build:es build:umd build:umd:min",
"clean": "rimraf lib dist es",
"prebuild": "npm run clean",
"prepare": "npm run build",
"pretest": "npm run build:umd",
"lint": "xo src/* && stylelint src/*.css",
"test": "npm run lint && NODE_ENV=test ava test --serial",
"test:debug": "NODE_ENV=test iron-node ./node_modules/ava/profile.js test/tests.js",
"release": "np"
},
"files": [
"es",
"lib",
"dist",
"src"
],
"repository": "microfeedback/microfeedback-button",
"authors": [
"Steven Loria (https://github.com/sloria)",
"Lauren Barker (https://github.com/laurenbarker)"
],
"license": "MIT",
"keywords": [
"user",
"customer",
"feedback",
"ui",
"widget",
"button",
"microfeedback"
],
"devDependencies": {
"autoprefixer": "^9.0.0",
"ava": "^3.0.0",
"babel-cli": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"browser-env": "^3.2.0",
"cssnano": "^4.0.0",
"np": "^6.0.0",
"npm-run-all": "^4.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.4",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-uglify": "^6.0.0",
"rollup-watch": "^4.3.1",
"sinon": "^9.0.0",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^20.0.0",
"syn": "^0.14.1",
"xo": "^0.23.0"
},
"dependencies": {
"sweetalert2": "^7.22.2"
},
"ava": {
"require": [
"./test/helpers/setup-browser-env.js"
]
},
"xo": {
"envs": [
"node",
"browser"
],
"space": true,
"rules": {
"capitalized-comments": 0,
"operator-linebreak": 0,
"import/no-unassigned-import": 0,
"no-warning-comments": 0,
"comma-dangle": [
"error",
"always-multiline"
]
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"declaration-colon-newline-after": null
}
},
"browserslist": [
"IE >= 11"
],
"prettier": {
"bracketSpacing": false,
"useTabs": false,
"singleQuote": true,
"trailingComma": "all"
}
}