-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.22 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
63
64
65
66
{
"name": "observable-air",
"description": "Observables for the calorie conscious",
"main": "./src/main",
"typings": "./src/main.d.ts",
"scripts": {
"benchmark": "tsc; node ./benchmarks/run",
"benchmark:write": "yarn benchmark > benchmarks.md",
"cleanup": "find ./src -type f -name '*.js' -delete && find ./src -type f -name '*.map' -delete",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"hydra": "node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm ./benchmarks/run",
"prepublish": "tsc -d && npm run build",
"test": "tsc && mocha --reporter=min",
"test:watch": "mocha --watch",
"build": "rollup -c ./config/rollup.config.js",
"lint": "git ls-files | grep '.ts$' | xargs tslint",
"lint:fix": "git ls-files | grep '.ts$' | xargs tslint --fix",
"prettier": "git ls-files | grep '.ts$' | xargs prettier --write --config=.prettierrc",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/benchmark": "^1.0.30",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"benchmark": "^2.1.2",
"cli-table2": "^0.2.0",
"coveralls": "^3.0.6",
"cz-conventional-changelog": "^3.0.2",
"ghooks": "^2.0.4",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"prettify": "^0.1.7",
"request-promise": "^4.2.4",
"rollup": "^1.19.4",
"rollup-plugin-babili": "^3.0.0",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-uglify": "^6.0.2",
"semantic-release": "^15.13.21",
"travis-deploy-once": "^5.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"typescript": "^3.5.3",
"uglify": "^0.1.5",
"validate-commit-msg": "^2.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/tusharmath/observable-air.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"version": "0.0.0-development",
"dependencies": {
"dbl-linked-list-ds": "^2.0.0"
}
}