-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "resizerjs",
"version": "0.0.1",
"description": "Handle custom resizing of flex box elements like a boss",
"main": "./dist/resizer.js",
"scripts": {
"start": "tsc && babel dist -d dist",
"test": "karma start ./karma.conf.js",
"deploy": "gh-pages -d dist",
"predeploy": "npm run copy-src-dist",
"copy-src-dist": "cp ./src/index.html ./src/resizer.css ./dist/",
"pretest": "npm start",
"docs": "tsdoc"
},
"author": "eknowles",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-polyfill": "^6.23.0",
"core-js": "^2.4.1",
"coveralls": "^2.13.1",
"gh-pages": "^0.12.0",
"jasmine-core": "^2.6.1",
"jasmine-jquery": "^2.1.1",
"jquery": "^3.2.1",
"jsdoc": "^3.4.3",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.31",
"tsdoc": "0.0.4",
"typescript": "^2.3.2",
"underscore": "^1.8.3"
}
}