-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.31 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
{
"name": "ugraph",
"title": "uGraph",
"version": "1.0.0",
"description": "A feature-rich SVG library",
"main": "index.js",
"scripts": {
"dev-server": "concurrently -r --kill-others \"yarn run rollup\" \"yarn run server\"",
"tsc": "tsc -w",
"server": "lite-server",
"rollup": "rollup -w -c build/rollup.dev.config.js",
"rollup_c": "rollup -c build/rollup.dev.config.js",
"dev": "concurrently --kill-others \"yarn run rollup\" \"lite-server\"",
"dev:test": "karma start build/karma.dev.config.js",
"dev:coverage": "karma start build/karma.coverage.config.js",
"test:unit": "karma start build/karma.unit.config.js",
"lint": "eslint src build test",
"build": "rollup -c build/rollup.dev.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicholasjs/ugraph.git"
},
"keywords": [
"ugraph",
"svg",
"javascript",
"library"
],
"author": "Nicholas Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicholasjs/ugraph/issues"
},
"homepage": "https://github.com/nicholasjs/ugraph#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.20.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-runtime": "^6.20.0",
"buble": "^0.17.3",
"chai": "^4.1.2",
"concurrently": "^3.4.0",
"es6-promise": "^4.0.5",
"eslint": "^4.11.0",
"eslint-plugin-mocha": "^4.7.0",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"mocha": "^4.0.1",
"phantomjs": "^2.1.7",
"rollup": "^0.51.7",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.17.0",
"rollup-plugin-json": "^2.0.2",
"rollup-watch": "^4.3.1",
"webpack": "^3.8.1",
"webpack-core": "^0.6.9"
},
"dependencies": {
"rollup-plugin-typescript": "^0.8.1"
}
}