-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "lego-api",
"version": "1.0.7",
"description": "lego api",
"main": "./index.js",
"web": "./index.js",
"browser": "./index.js",
"alias": "./index.js",
"module": "./typed/index.js",
"scripts": {
"strip": "flow-remove-types typed/ --pretty --all --out-dir ./",
"pretest": "npm run strip",
"prepublishOnly": "npm run strip",
"test": "ava --verbose"
},
"devDependencies": {
"ava": "*",
"eslint-config-chain-able": "^1.0.0",
"eslint-plugin-prettier": "^2.1.1",
"fliplog": "^1.0.4",
"flow-remove-types": "*",
"prettier": "^1.4.4",
"prettier-eslint": "^6.3.0"
},
"keywords": [
"lego",
"conditional",
"fluent",
"chain",
"flipchain",
"fliphub-chain",
"fusebox-chain",
"webpack",
"fusebox"
],
"license": "MIT",
"author": "James <[email protected]>",
"homepage": "https://github.com/fuse-box/lego-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fuse-box/lego-api.git"
},
"bugs": {
"url": "https://github.com/fuse-box/lego-api/issues"
},
"files": [
"index.js",
"LegoAPI.js",
"Conditional.js",
"./typed/LegoAPI.js",
"./typed/Conditional.js"
],
"dependencies": {
"chain-able": "^3.0.0"
}
}