-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 766 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 766 Bytes
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
{
"name": "crosslink",
"version": "0.2.2",
"description": "A spreadsheet cell microlibrary inspired by arrowized Functional Reactive Programming",
"homepage": "https://github.com/monfera/crosslink",
"main": "build/crosslink.min.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/monfera/crosslink"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm test"
},
"keywords": [],
"author": "Robert Monfera <monfera.robert@gmail.com>",
"license": "MIT",
"devDependencies": {
"rollup": "^0.41.6",
"rollup-plugin-babili": "^3.0.0",
"tape": "^4.6.3"
}
}