-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "svg-injector",
"version": "0.0.1",
"description": "Injects SVG into provided element based of stylesheet rules",
"main": "./build/index.js",
"scripts": {
"test": "karma start ./test/karma.conf.js",
"build": "tsc & webpack",
"demo": "webpack --watch & http-server ./demo"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "3.4.34",
"@types/karma-fixture": "0.2.2",
"@types/mocha": "2.2.37",
"babel": "^6.0.15",
"babel-core": "^6.0.20",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"chai": "3.5.0",
"karma": "1.3.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-fixture": "0.2.6",
"karma-html2js-preprocessor": "1.1.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.1",
"mocha": "3.2.0",
"phantomjs": "2.1.7",
"sinon": "1.17.7",
"ts-loader": "^0.8.2",
"tsd": "^0.6.5",
"typescript": "^2.0.9",
"webpack": "^1.13.3"
},
"dependencies": {
"http-server": "0.9.0",
"systemjs": "^0.19.41"
}
}