-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 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
{
"name": "handlers",
"version": "1.0.0",
"description": "Discover and test URL handlers",
"main": "index.js",
"dependencies": {
"http-server": "^0.9.0"
},
"devDependencies": {
"eslint": "^3.2.0",
"eslint-config-google": "^0.6.0",
"htmlhint": "^0.9.12",
"jsonlint": "^1.6.2",
"jspm": "^0.16.32",
"markdownlint": "^0.2.0",
"markdownlint-cli": "^0.1.0",
"stylelint": "^7.1.0"
},
"scripts": {
"start": "http-server web -a 127.0.0.1",
"lint": "eslint . && markdownlint *.md */*.md web/*/*.md",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ouspg/urlhandlers.git"
},
"author": "nkapu@iki.fi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ouspg/urlhandlers/issues"
},
"homepage": "https://github.com/ouspg/urlhandlers#readme",
"jspm": {
"directories": {
"baseURL": "web"
},
"dependencies": {
"bowser": "npm:bowser@^1.3.0",
"css": "github:systemjs/plugin-css@^0.1.23",
"jquery": "npm:jquery@^2.2.2",
"jquery-mobile": "npm:jquery-mobile@^1.4.1",
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.12"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"clean-css": "npm:clean-css@^3.4.10",
"core-js": "npm:core-js@^1.1.4"
}
}
}