-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 811 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 811 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
{
"name": "luri",
"version": "2.8.0",
"description": "A little javascript UI building library made for fun and science.",
"main": "src/luri.js",
"types": "src/luri.d.ts",
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter=html mocha",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manix/luri.git"
},
"author": "Manix <admin@manix.info>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/manix/luri/issues"
},
"homepage": "https://github.com/manix/luri#readme",
"devDependencies": {
"coveralls": "^2.13.1",
"jsdom": "^11.1.0",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.0.3"
},
"dependencies": {}
}