-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
62 lines (62 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cherow",
"version": "0.2.0",
"description": "Fast, standard-compliant ECMAScript parser written in ECMAScript",
"main": "dist/cherow.js",
"author": "KFlash",
"license": "MIT",
"homepage": "https://github.com/cherow/cherow",
"repository": {
"type": "git",
"url": "git+https://github.com/cherow/cherow.git"
},
"bugs": {
"url": "https://github.com/cherow/cherow/issues"
},
"keywords": [],
"files": [
"dist",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"README.md",
"BENCHMARK.md"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"minify": "rollup -c rollup.config.min.js",
"test": "mocha test/specs/**/*.ts -R spec --bail",
"coverage": "npm run clean:build && npm run pretest && node --harmony ./node_modules/istanbul/lib/cli.js cover --root ./build/src --report lcov --report text ./node_modules/mocha/bin/_mocha ./build/test/**/*.js",
"clean": "rimraf dist build coverage",
"clean:build": "rimraf build",
"debug": "npm-run-all clean pretest",
"prepublish": "npm run build",
"prebuild": "tsc --skipLibCheck -t es2015 --m es2015",
"pretest": "tsc --sourceMap --skipLibCheck -t es2015 --m umd",
"lint": "npm-run-all --parallel lint:src lint:tests",
"lint:src": "tslint src/**/*.ts src/**/*.tsx",
"lint:tests": "tslint test/specs/**/*.ts test/specs/**/*.tsx",
"watch:tests": "mocha test/specs/**/*.ts -R spec --bail --watch",
"watch:build": "tsc --skipLibCheck -t es2015 --m es2015 -w",
"circleci": "npm run coverage && npm run test",
"appveyor": "npm run build && npm run coverage && npm run test"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"chai": "^4.1.2",
"codecov": "^2.3.0",
"coveralls": "^2.13.1",
"istanbul": "github:gotwarlost/istanbul#v1",
"mocha": "^3.5.3",
"npm-check-updates": "2.11.2",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-buble": "0.15.0",
"rollup-plugin-uglify": "2.0.1",
"ts-node": "^3.3.0",
"tslint": "5.7.0",
"typescript": "^2.5.2"
}
}