This repository has been archived by the owner on May 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
59 lines (59 loc) · 1.94 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": "selector-observer",
"version": "2.1.6",
"description": "Allows you to monitor DOM elements that match a CSS selector",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.esm.d.ts",
"scripts": {
"test": "npm run build-test && npm run flow && npm run lint && npm run karma",
"lint": "eslint .",
"flow": "flow check",
"karma": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"build-umd": "rollup -c rollup.config.umd.js && cp lib/index.js.flow dist/index.umd.js.flow && cp lib/index.d.ts dist/index.umd.d.ts",
"build-esm": "rollup -c rollup.config.esm.js && cp lib/index.js.flow dist/index.esm.js.flow && cp lib/index.d.ts dist/index.esm.d.ts",
"build-test": "rollup -c rollup.config.test.js",
"build": "npm run build-umd && npm run build-esm",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josh/selector-observer.git"
},
"author": "Joshua Peek",
"license": "MIT",
"bugs": {
"url": "https://github.com/josh/selector-observer/issues"
},
"homepage": "https://github.com/josh/selector-observer#readme",
"files": [
"dist/index.esm.d.ts",
"dist/index.esm.js.flow",
"dist/index.esm.js",
"dist/index.umd.d.ts",
"dist/index.umd.js.flow",
"dist/index.umd.js"
],
"dependencies": {
"selector-set": "^1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"eslint": "^4.7.0",
"eslint-plugin-github": "^0.23",
"flow-bin": "^0.65.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.0.0",
"rollup": "^0.55.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"zen-observable": "^0.8.8"
}
}