-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "indefinite-observable",
"version": "2.0.1",
"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 --require @std/esm mocha ./dist/**/__tests__/**.js",
"posttest": "nyc report --reporter=json && codecov -f coverage/*.json",
"build": "yarn run clean; tsc; rollup --config rollup.config.js",
"prepublish": "yarn run build"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/indefinite-observable.bundle.js",
"typescript:main": "src/index.ts",
"dependencies": {
"symbol-observable": "1.2.0"
},
"@std/esm": {
"mode": "all",
"cjs": true
},
"devDependencies": {
"@std/esm": "^0.26.0",
"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",
"rollup": "^0.67.4",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript2": "^0.18.0",
"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": "3",
"typescript-pundle": "1.0.1"
},
"pre-commit": [
"build"
],
"repository": {
"type": "git",
"url": "[email protected]: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"
}