-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
57
58
59
60
61
62
63
64
{
"name": "es6-lenses",
"version": "0.4.1",
"description": "Functional lenses for ES6",
"homepage": "https://github.com/ochafik/es6-lenses",
"repository": {
"type": "git",
"url": "https://github.com/ochafik/es6-lenses"
},
"bugs": {
"url": "https://github.com/ochafik/es6-lenses/issues"
},
"keywords": [
"lens",
"lenses",
"proxy",
"es6",
"es2016",
"functional"
],
"main": "./build/index.umd.js",
"jsnext:main": "./build/index.es2015.js",
"types": "./index.d.ts",
"scripts": {
"start": "concurrently --kill-others \"npm run rollup:w\" \"npm run lite\" ",
"lite": "lite-server",
"lint": "tslint {test,src}/*.ts",
"rollup": "rollup -c",
"rollup:w": "rollup -c -w",
"tsc": "tsc",
"tsc:w": "tsc -w",
"test:generate": "rm -fR build/test && npm run tsc",
"mocha": "mocha --reporter spec build/test",
"test": "npm run test:generate && npm run mocha",
"test:w": "npm run test:generate && concurrently --kill-others \"npm run tsc:w\" \"npm run mocha -- --watch\"",
"test:examples": "cd examples && rm -fR node_modules && npm install --ignore-scripts && npm test",
"prepublish": "npm run test && npm run lint && rm -fR build && npm run rollup"
},
"author": {
"name": "Olivier Chafik",
"email": "olivier.chafik@gmail.com",
"url": "https://ochafik.com/"
},
"license": "ISC",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
"immutable": "^3.8.1",
"lite-server": "^2.2.2",
"mocha": "^3.1.2",
"rollup": "^0.36.3",
"rollup-plugin-typescript": "^0.8.1",
"rollup-watch": "^2.5.0",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
},
"engineStrict": true,
"engines": {
"node": ">= 6.0.0"
},
"runkitExampleFilename": "examples/node-example.js"
}