forked from bpmn-io/tiny-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "tiny-svg",
"version": "2.2.1",
"description": "A minimal toolbelt for builing fast SVG-based applications",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"all": "run-s lint test distro",
"bundle": "rollup -c",
"copy": "cpx -v lib/*.d.ts dist",
"distro": "run-s copy bundle test:integration",
"dev": "npm test -- --auto-watch --no-single-run",
"lint": "eslint .",
"prepublishOnly": "run-s distro",
"test": "karma start",
"test:integration": "karma start test/integration/karma.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/tiny-svg"
},
"keywords": [
"svg",
"library",
"geometry"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"chai": "^4.2.0",
"cpx": "^1.5.0",
"eslint": "^5.6.1",
"eslint-plugin-bpmn-io": "^0.6.0",
"karma": "^3.0.0",
"karma-browserify": "^5.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.2",
"puppeteer": "^1.9.0",
"rollup": "^0.66.5",
"rollup-plugin-uglify": "^6.0.0",
"watchify": "^3.11.0"
}
}