This repository was archived by the owner on Jul 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.38 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.38 KB
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
{
"name": "gfm-task-list",
"version": "1.0.3",
"description": "jQuery plugin for enabling GFM task lists for third-party integrations to GitHub",
"main": "dist/gfm-task-list.js",
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/webpack --config=webpack/webpack.prod.config.js --display-chunks --progress",
"clean:deps": "./node_modules/.bin/del-cli typings node_modules",
"clean:install": "npm install",
"clean": "./node_modules/.bin/del-cli ./dist .cache",
"dev": "NODE_ENV=development webpack-dev-server --config=webpack/webpack.dev.config.js --inline --progress --profile --colors --watch --display-error-details --display-cached --hot",
"postinstall": "./node_modules/.bin/typings install",
"prebuild": "npm run clean",
"preclean:install": "npm run clean:deps",
"prepublish": "npm run build",
"test:watch": "karma start ./karma.conf.js",
"test": "karma start ./karma.conf.js --single-run --browsers PhantomJS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waffleio/gfm-task-list.git"
},
"keywords": [
"GitHub",
"markdown",
"tasks",
"lists",
"issues",
"GFM"
],
"author": "Waffle.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/waffleio/gfm-task-list/issues"
},
"homepage": "https://github.com/waffleio/gfm-task-list#readme",
"devDependencies": {
"awesome-typescript-loader": "^1.0.0",
"babel-core": "^6.10.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"del-cli": "^0.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.21.0",
"jquery": "^3.0.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.7.0",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"node-sass": "^3.8.0",
"phantomjs-prebuilt": "^2.1.7",
"sass-loader": "^3.2.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"superagent": "^2.0.0",
"typescript": "^1.8.10",
"typings": "^1.2.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0"
}
}