-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 898 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 898 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
41
42
{
"author": "zbryikt",
"name": "ldcolor",
"browser": "dist/index.min.js",
"main": "dist/index.min.js",
"license": "MIT",
"files": [
"dist/**/*"
],
"description": "tiny js color library",
"version": "1.1.3",
"homepage": "https://github.com/loadingio/ldcolor",
"repository": {
"type": "git",
"url": "https://github.com/loadingio/ldcolor"
},
"engines": {
"node": ">=0.12.6",
"npm": ">=1.2.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require livescript ./test/main.ls",
"cover": "./node_modules/.bin/nyc --reporter=text npm run test"
},
"devDependencies": {
"livescript": "^1.6.0",
"uglify-js": "^3.13.1",
"fedep": "^1.4.3",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"nyc": {
"all": true,
"extension": ".ls",
"require": [
"livescript"
],
"include": [
"src/**/*"
]
}
}