This repository was archived by the owner on Mar 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "icls",
"version": "0.0.1",
"description": "Convert ICLS theme file to prism.css",
"author": "Cedric Michaux",
"main": "bin/icls",
"license": "MIT",
"bin": {
"icls": "bin/icls"
},
"scripts": {
"prebuild": "npm run lint",
"build": "mkdir -p es5/bin && npm run transpile",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"prepublish": "npm run build",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha",
"test:scrutinizer": "cross-env NODE_ENV=test nyc --reporter=clover _mocha ",
"test:travis": "cross-env NODE_ENV=test nyc --reporter=text-lcov _mocha | coveralls",
"transpile": "babel src --out-dir es5 --source-maps",
"watch": "babel src --out-dir es5 --source-maps --watch"
},
"directories": {
"test": "test"
},
"dependencies": {
"commander": "^2.11.0",
"debug": "^3.1.0",
"is-iojs": "^1.1.0",
"xml-js": "^1.5.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.0",
"eslint": "^4.9.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}