-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "unique-selector",
"version": "0.5.0",
"description": "Given a DOM node, return a unique CSS selector matching only that element",
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run compile",
"test": "npm run compile && mocha --ignore-leaks --compilers js:babel-register",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"watch": "npm-scripts-watcher"
},
"watch": {
"src/**/*.js": [
"compile"
]
},
"repository": {
"type": "git",
"url": "git://github.com/ericclemmons/unique-selector.git"
},
"keywords": [
"dom",
"html",
"css",
"selector",
"event"
],
"author": "Eric Clemmons <[email protected]>",
"contributors": [
{
"name": "Avraam Mavridis",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.18",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.3.13",
"chai": "^3.5.0",
"component": "~0.10.1",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-config-airbnb-lite": "^1.0.4",
"eslint-plugin-react": "^4.2.3",
"jquery": "^2.2.3",
"jsdom": "^8.3.0",
"mocha": "~1.7.4",
"mocha-jsdom": "^1.1.0",
"mocha-phantomjs": "~1.1.1"
}
}