forked from waynecz/css-doodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "css-doodle",
"version": "0.3.0",
"description": "A web component for drawing patterns with css.",
"main": "css-doodle.js",
"scripts": {
"build": "rollup --output.format=umd --output.file=css-doodle.js -- src/index.js",
"minify": "uglifyjs --compress --mangle --output=css-doodle.min.js --ecma 6 -- css-doodle.js",
"trim": "./tools/trim css-doodle.min.js",
"start": "karma start",
"test": "karma start --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/css-doodle/css-doodle.git"
},
"devDependencies": {
"jasmine-core": "^3.1.0",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.2",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^6.0.0",
"rollup": "^0.59.1",
"uglify-es": "^3.3.9"
},
"keywords": [
"css",
"web-components"
],
"author": "yuanchuan",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuanchuan/css-doodle/issues"
},
"homepage": "https://github.com/yuanchuan/css-doodle#readme"
}