-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
65
66
67
68
{
"name": "sequins",
"version": "0.1.0",
"description": "Mutable sequences and native data structures (Map, Set, List) following the Immutable.js API",
"author": "[email protected]",
"license": "MIT",
"files": [
"dist/**"
],
"main": "dist/_sequins.js",
"module": "dist/sequins.mjs",
"scripts": {
"build": "broccoli build dist --overwrite",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-transform-classes": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "7.0.0",
"babel-jest": "^23.4.2",
"broccoli": "^2.0.0-beta.4",
"broccoli-babel-transpiler": "^7.0.0",
"broccoli-cli": "^1.0.0",
"broccoli-merge-trees": "^3.0.1",
"broccoli-rollup": "^2.1.1",
"jest": "^23.4.2",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.3.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"invariant": "^2.2.4",
"iter-tools": "^6.0.0",
"stable": "^0.1.8"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"setupTestFrameworkScriptFile": "<rootDir>/jest_setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conartist6/sequins.git"
},
"keywords": [
"mutable",
"immutable",
"map",
"set",
"list",
"stable",
"sort",
"sequence",
"seq",
"iter-tools",
"es6",
"es2015"
],
"bugs": {
"url": "https://github.com/conartist6/sequins/issues"
},
"homepage": "https://github.com/conartist6/sequins#readme"
}