-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
34 lines (34 loc) · 933 Bytes
/
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
{
"name": "icaro",
"version": "1.2.1",
"description": "Smart and efficient javascript object observer, ideal for batching DOM updates",
"main": "icaro.js",
"module": "src/index.js",
"main:next": "src/index.js",
"scripts": {
"prepublish": "test $CI && exit 0 || npm run build && sed -i .bak 's/v\\([0-9]\\.[0-9]\\.[0-9]\\)/'`git tag | tail -n1`'/' README.md",
"build": "rollup -c rollup.config.js > icaro.js",
"test": "npm run lint && mocha test",
"lint": "eslint src test"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-riot": "^1.0.0",
"mocha": "^3.4.2",
"rollup": "^0.41.6"
},
"keywords": [
"observable",
"proxy",
"object listener",
"streams",
"object observable",
"object watch"
],
"files": [
"src",
"icaro.js"
],
"author": "Gianluca Guarini <[email protected]> (http://gianlucaguarini.com)",
"license": "MIT"
}