-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "@motorcycle/collection",
"version": "1.1.0",
"description": "Simple-but-versatile helper for adding, updating, removing, merging and combining both static and dynamic lists of child components in a Cycle.js application",
"repository": "https://github.com/motorcyclejs/collection",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint src/*.js",
"test-dev": "mocha --watch --bail",
"precompile": "rimraf lib/ && mkdirp lib",
"compile": "babel -d lib/ src/",
"build": "npm run compile && npm run lint && npm test",
"prepublish": "npm run build"
},
"keywords": [
"most",
"most.js",
"cycle",
"cycle.js",
"streams",
"components",
"collections",
"list"
],
"author": {
"name": "Nathan Ridley",
"email": "axefrog@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"most": "*",
"immutable": "*",
"@most/hold": "*"
},
"devDependencies": {
"most": "*",
"immutable": "*",
"@most/hold": "*",
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.3",
"babel-plugin-espower": "^2.2.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"most-test": "^1.0.2",
"power-assert": "^1.4.1"
}
}