-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.68 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "niconico-comment-parser",
"version": "0.0.1",
"author": "3846masa",
"dependencies": {
"eastasianwidth": "0.1.1",
"lodash": "4.15.0",
"lodash.concat": "4.5.0",
"lodash.findindex": "4.6.0",
"lodash.groupby": "4.6.0",
"lodash.sortby": "4.7.0",
"sat": "0.5.0"
},
"devDependencies": {
"@types/eastasianwidth": "file:etc/@types/eastasianwidth",
"@types/lodash": "file:etc/@types/lodash",
"@types/mocha": "2.2.31",
"@types/node": "6.0.38",
"@types/power-assert": "0.0.27",
"@types/sat": "file:etc/@types/sat",
"eslint": "3.4.0",
"eslint-config-airbnb-base": "7.0.0",
"eslint-plugin-import": "1.14.0",
"intelli-espower-loader": "1.0.1",
"istanbul": "0.4.5",
"mocha": "3.0.2",
"npm-run-all": "3.1.0",
"power-assert": "1.4.1",
"remap-istanbul": "0.6.4",
"rimraf": "2.5.4",
"typescript": "2.0.0",
"typescript-eslint-parser": "0.2.0",
"typings": "1.3.3"
},
"keywords": [],
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "npm-run-all -c --silent build:clean build:run",
"build:clean": "rimraf lib",
"build:run": "tsc --outDir ./lib --rootDir ./src -p ./",
"clean": "npm-run-all -c --silent -p *:clean",
"test": "npm-run-all -c --silent test:clean test:build test:run test:clean",
"test:build": "tsc -p ./test",
"test:clean": "rimraf \"{src,test}/**/*{.d.ts,.js,.js.map}\"",
"test:mocha": "mocha --no-exit --require intelli-espower-loader",
"test:remap": "cd coverage && remap-istanbul -i coverage.json -o html-report -t html",
"test:run": "istanbul cover _mocha -- ./test/*.js",
"watch": "npm-run-all build:clean 'build:run -- -w'"
}
}