-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1020 Bytes
/
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": "view-sorcerer",
"version": "1.0.0",
"description": "Let me show a viewsource in your view source",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"jasmine": "jasmine JASMINE_CONFIG_PATH=test/support/jasmine.json",
"test": "npm run lint && npm run jasmine",
"lint": "jscs src test && eslint src/**/*.js test/**/*.js",
"fix": "jscs src test --fix",
"pack": "node tools/pack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/longchiwen/view-sorcerer.git"
},
"keywords": [
"javascript"
],
"author": "longchiwen",
"license": "MIT",
"bugs": {
"url": "https://github.com/longchiwen/view-sorcerer/issues"
},
"homepage": "https://github.com/longchiwen/view-sorcerer#readme",
"dependencies": {
"html-entities": "^1.2.0",
"htmlparser2": "^3.9.0",
"node-sass": "^3.7.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"eslint": "^2.11.1",
"jasmine": "^2.4.1",
"jscs": "^3.0.4"
}
}