-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 800 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 800 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": "bbm"
, "author": "Preole Soandso"
, "version": "2.0.0"
, "description": "BareBonesMarkup: Experimental Lightweight Markup Language"
, "repository":
{
"type": "git"
, "url": "https://github.com/preole/bbm/"
}
, "bugs": "https://github.com/preole/bbm/issues/"
, "license": "MIT"
, "keywords":
[
"lml"
, "html"
, "bbm"
, "BareBonesMarkup"
, "Lightweight markup language"
]
, "devDependencies":
{
"diff": "^1.0.8"
, "glob": "^4.0.6"
, "webpack": "^1.4.9"
, "jshint": "^2.5.10"
, "mstring": "^0.1.2"
}
, "engines":
{
"node": ">=0.10.7"
}
, "scripts":
{
"lint" : "node s-lint.js"
, "build" : "node s-lint.js && node s-build.js"
, "test" : "node s-lint.js && node s-build.js && node s-test.js"
, "prepublish" : "npm run test"
}
}