-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1005 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1005 Bytes
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": "task_list",
"version": "1.0.2",
"description": "GitHub-flavored-Markdown TaskList components",
"homepage": "https://github.com/codetre/html-pipeline-task_list",
"repository": "https://github.com/codetre/html-pipeline-task_list",
"license": "MIT",
"dependencies": {
"jquery": "^3.6",
"jquery-ujs": "^1.2.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"node-qunit-puppeteer": "^2.1",
"qunit": "^2.16"
},
"scripts": {
"lint": "eslint --format stylish --color app/**/*.js",
"start": "node ./test/server.js .",
"test": "node-qunit-puppeteer ./test/qunit.html 10000 --no-sandbox"
},
"main": [
"app/assets/javascripts/task_list.js",
"app/assets/stylesheets/task_list.scss"
],
"ignore": [
".gitignore",
".travis.yml",
"*.gemspec",
"*.md",
"config.ru",
"Gemfile",
"lib/",
"Rakefile",
"script/",
"test/"
]
}