-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
50 lines (50 loc) · 1.51 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
{
"name": "indefinite-observable",
"version": "1.0.2",
"scripts": {
"start": "node ./devServer.js",
"clean": "rm -rf ./dist/*; mkdir -p ./dist/",
"lint": "tslint -c tslint.json --project tsconfig.json",
"pretest": "yarn run lint; yarn run build; tsc --project ./tsconfig.tests.json",
"test": "nyc mocha ./dist/**/__tests__/**.js",
"posttest": "nyc report --reporter=json && codecov -f coverage/*.json",
"build": "yarn run clean; tsc; node ./build.js",
"prepublish": "yarn run build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typescript:main": "src/index.ts",
"dependencies": {
"symbol-observable": "1.2.0"
},
"devDependencies": {
"chai": "3.5.0",
"codecov": "^1.0.1",
"mocha": "3.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-sugar-free": "1.3.1",
"nyc": "^10.0.0",
"pre-commit": "1.1.3",
"pundle-dev": "1.1.11",
"sinon": "2.0.0-pre.3",
"sinon-chai": "2.8.0",
"tsickle": "0.2.0",
"tslint": "4.0.2",
"tslint-junit-formatter": "^5.1.0",
"typescript": "2.1.4",
"typescript-pundle": "1.0.1"
},
"pre-commit": [
"build"
],
"repository": {
"type": "git",
"url": "git@github.com:material-motion/indefinite-observable-js.git"
},
"author": "The Indefinite Observable Authors (see AUTHORS)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/material-motion/indefinite-observable-js/issues/"
},
"homepage": "https://github.com/material-motion/indefinite-observable-js/#readme"
}