-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.3 KB
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
{
"name": "position-element",
"version": "1.0.2",
"description": "A simple function for positioning one DOM element relative to another DOM element",
"main": "lib/position-element.js",
"scripts": {
"build": "webpack --env dev && webpack --env build && npm run test",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --require babel-core/register --colors ./src/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/linsight/position-element"
},
"keywords": [
"react",
"provider",
"state"
],
"author": "David Lin",
"license": "MIT",
"bugs": {
"url": "https://github.com/linsight/position-element.git/issues"
},
"homepage": "https://linsight.github.io/position-element/",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-loader": "^1.9.0",
"jsdom": "^11.6.2",
"mocha": "^4.0.1",
"webpack": "^3.10.0",
"yargs": "^11.0.0"
}
}